viernes, 18 de octubre de 2019

Python

Hi ha un idle de Python online que funciona prou bé.
https://repl.it/languages/python3

i un tutorial concís:
http://cs231n.github.io/python-numpy-tutorial/

sobre representació gràfica:
cas 1


import numpy as np
import matplotlib.pyplot as plt

x=np.arange(0,3*np.pi,0.1)
y_sin=np.sin(x)
y_cos=np.cos(x)
plt.subplot(2,1,1)
plt.plot(x,y_sin)
plt.subplot(2,1,2)
plt.plot(x,y_cos)
plt.show()
plt.savefig('plot.png')



cas 2: gràfiques dins el mateix plot


import numpy as np
import matplotlib.pyplot as plt

x=np.arange(0,3*np.pi,0.1)
y_sin=np.sin(x)
y_cos=np.cos(x)
y_resta=y_sin-y_cos
plt.plot(x,y_sin,'r')
plt.plot(x,y_cos,'g')
plt.plot(x,y_resta,'b')
plt.grid(True)
plt.show()
plt.savefig('plot.png')

També podem representar diagrames de Venn.

No hay comentarios:

Publicar un comentario