Graphique sans ligne

This commit is contained in:
renald 2021-03-22 10:13:59 +01:00
parent 32d689d834
commit 5b1eadff0c
2 changed files with 1 additions and 3 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
tutogit.pdf

View File

@ -9,10 +9,7 @@ xn = np.arange(N)
plt.scatter(xn,np.sin(2.*np.pi*xn/N),c='g',s=2,marker='s')
xn = np.arange(N*10)
plt.plot(xn,np.sin(2.*np.pi*xn/N),'b')
plt.xlim(0,32)
plt.savefig('tutogit.pdf')