Basic numerics and plotting with Python#

A simple example of basic Python numerics and how to plot it.

plot python 101
[<matplotlib.lines.Line2D object at 0x7ff9082abc10>]

# import numpy: the module providing numerical arrays
import numpy as np
t = np.linspace(1, 10, 2000)

# import matplotlib.pyplot: the module for scientific plotting
import matplotlib.pyplot as plt
plt.plot(t, np.cos(t))

Total running time of the script: ( 0 minutes 0.233 seconds)

Estimated memory usage: 10 MB

Gallery generated by Sphinx-Gallery