Intro to Technical Programming
(outline goes here)
start
how to plot a function vs. time
need a t vector:
t=arange(0,1,0.01)
type t and hit enter to see what you created
type help arange for a bit more info
type y=sin(2*pi*t)
type plot(t,y)
what happens if you change the parameters sent to arange?