day1/exercise/four_plot.py
author Christopher Burns <chris.d.burns@gmail.com>
Sun, 20 Jun 2010 22:50:03 -0700
branchscipy2010
changeset 414 68ef3dced7a0
parent 396 502d4d151fa2
child 416 3ec547912b3c
permissions -rw-r--r--
Add whitespace to assignment.

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