Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

Jupyter notebook support/2016-01-18-111223-matplotlib.ipynb

Views: 40
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