day1/exercise/four_plot.py
author Prabhu Ramachandran <prabhu@aero.iitb.ac.in>
Wed, 16 Jun 2010 01:19:34 -0400
branchscipy2010
changeset 401 1f4dcd5ca68c
parent 396 502d4d151fa2
child 416 3ec547912b3c
permissions -rw-r--r--
Minor changes to schedule.

x=linspace(-5*pi, 5*pi, 500)
plot(x, x, 'b')
plot(x, -x, 'b')
plot(x, sin(x), 'g', linewidth=2)
plot(x, x*sin(x), 'r', linewidth=3)
legend(['x', '-x', 'sin(x)', 'xsin(x)'])
annotate('origin', xy = (0, 0))
title('Four Plot')
xlim(-5*pi, 5*pi)
ylim(-5*pi, 5*pi)
show()