jupyter | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
I think this makes another Markdown cell (Len)
x = np.linspace(-1,1)
y = x**3 - x**2 + 1
plt.plot(x,y);
plt.plot(x,x**2)
jupyter | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
I think this makes another Markdown cell (Len)
x = np.linspace(-1,1)
y = x**3 - x**2 + 1
plt.plot(x,y);
plt.plot(x,x**2)