using python modules/sine.py
author Amit Sethi
Fri, 12 Nov 2010 15:23:54 +0530
changeset 489 bc8d01c3c9b3
parent 261 c7f0069d698a
permissions -rw-r--r--
Added quickref for testing-debugging

from scipy import linspace, pi, sin
from pylab import plot, legend, show, title
from pylab import xlabel, ylabel

x = linspace(-2*pi,2*pi,100)
plot(x,sin(x))
legend(['sin(x)'])
title('Sine plot')
xlabel('x')
ylabel('sin(x)')
show()