using python modules/sine.py
author amit
Thu, 21 Oct 2010 00:25:09 +0530
changeset 343 e9e35249e81b
parent 261 c7f0069d698a
permissions -rw-r--r--
Adding UI button images to be used for quickref and slides

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()