| Hosted by CoCalc | Download
Kernel: Python 2 (SageMath)
%matplotlib inline import matplotlib.pyplot as plt import numpy as np x = np.linspace(-5,5,100) plt.plot(x,np.sin(x)) # on utilise la fonction sinus de Numpy plt.ylabel('fonction sinus') plt.xlabel("l'axe des abcisse") plt.show()
Image in a Jupyter notebook