Home > Net >  Difficulties using matplotlib plot method
Difficulties using matplotlib plot method

Time:12-02

Very recently I have been tasked with ploting a derivative using Python and matplotlib. This is my code:

x=np.linspace(-100,100,num=50)  
funcion=(56*(x**3))-(38.999*(x**2)) (4.196*x-0.15)  
plt.plot(x, funcion)

The resulting plot is this: result

  • Related