Python: - To Start, Input Your Commands Here
Python: - To Start, Input Your Commands Here
https://try.jupyter.org/
Python
x = np.linspace(-4,6,100) x = np.linspace(-6,6,100)
y = np.exp(x) y = np.exp(-x)
plt.plot(x,y) plt.plot(x,y)
plt.show() plt.show()
Plotting 2
y=x e-x
x = np.linspace(-1,8,100)
y = (x**2)*np.exp(-x)
plt.plot(x,y)
plt.show()