Veamos un ejemplo de representación gráfica de tres funciones en Python utilizando las librerías:
- numpy
- matplotlib
import numpy as np
import matplotlib.pyplot as plt
x=np.arange(0,1,.1)
print(x)
plt.xkcd()
plt.plot(x,x,"v-",
x, x**2,"x-",
x,x**3,'o-')
plt.show()
No hay comentarios:
Publicar un comentario