scubamut
10/13/2014 - 1:06 PM

Plotting with Interactive Parameters

Plotting with Interactive Parameters

from IPython.html.widgets import *
from IPython.display import display
import numpy as np

def plot_sin(a, b):
    x = np.linspace(0,4*np.pi, 100)
    y = np.sin(a*x+b)
    plt.plot(x,y)

interact(plot_sin, a=(0.0,5.0,0.1), b=(-5.0,5.0,0.1));