Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Draw Math Curve with Python Engine
How to Draw a Math Curve with Python Engine?
✍: FYIcenter.com
If you want to draw a math curve quickly,
you can use the Classic Jupyter Server provided on jupyter.org
as show in this tutorial.
1. Follow the previous tutorial to start the Classic Jupyter Server at jupyter.org.
2. Click "File > New Notebook > Python 3" menu. You see a new notebook opened.
3. Click "+" icon to insert a new cell in notebook. And enter the following Python code to import "numpy" and "matplotlib" libraries.
import numpy as np import matplotlib.pyplot as plt
4. Click "Run" icon to execute the code. You see no output.
5. Click "+" icon to insert another new cell in notebook. And enter the following Python code to draw a section of a Log curve.
x = np.arange(0.1, 5, 0.1) y = np.log(x) plt.plot(x, y) plt.show()
6. Click "Run" icon to execute the code. You see an image of the Log curve generated.
⇒ Installing and Running Jupyter
⇐ Public Jupyter Server with Python Engine
2021-12-23, ∼1838🔥, 0💬
Popular Posts:
What port numbers are used for data connections in passive mode in FileZilla Server? Can I limit the...
What are Link and Activity LEDs on Ethernet Socket? Link and Activity LEDs on Ethernet Socket are LE...
What is outlook.office365.com? Our IT tells us to migrate to outlook.office365.com. outlook.office36...
Why the "dir" command hangs when using the FTP command-line tool on Windows? when you run the "dir" ...
How to install Mozilla Firefox 2.0 add-on: FireFTP? FireFTP is a Mozilla Firefox 2 add-on that provi...