Basic numerics and plotting with Python#

try:
    import matplotlib.pyplot as plt
except ImportError:
    raise RuntimeError("This script needs the matplotlib library")

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

# import numpy: the module providing numerical arrays
import numpy as np

t = np.linspace(1, 10, 2000)

plt.plot(t, np.cos(t))
plot python 101
[<matplotlib.lines.Line2D object at 0x7fb3924d8c90>]

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

Estimated memory usage: 9 MB

Gallery generated by Sphinx-Gallery