Menu

[r4419]: / trunk / htdocs / tut / thirdfig.py  Maximize  Restore  History

Download this file

6 lines (5 with data), 121 Bytes

1
2
3
4
5
from pylab import *
t = arange(0.0, 5.2, 0.2)
plot(t, t, 'b--', t, t**2, 'bs', t, t**3, 'g^')
savefig('thirdfig')
show()