Note
Click here to download the full example code
Solution of the exercise 1 with matplotlib.
import numpy as np import matplotlib.pyplot as plt n = 256 X = np.linspace(-np.pi, np.pi, 256) C,S = np.cos(X), np.sin(X) plt.plot(X, C) plt.plot(X,S) plt.show()
Total running time of the script: ( 0 minutes 0.012 seconds)
Gallery generated by Sphinx-Gallery
Demo text printing
Exercise 4