Exercise 1ΒΆ

Solution of the exercise 1 with matplotlib.

../../../../_images/sphx_glr_plot_exercise_1_001.png
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