from ipywidgets import interact
@interact
def plot_polynom(a=[0,1,2,3], b=2):
x = np.arange(-10, 10, 0.1)
y = a*x**3+ b*x**2
plt.plot(x,y); plt.xlim(xmin=-10, xmax=10); plt.ylim(ymin=-100, ymax=100)
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter