www.main.lv
Don't think just code it

2011-05-30 Phase space for chaos

Phase space for some chaotic function. And see the picture of it.
from MO0_w0 import t
from pylab import *

dt = []
for tt in xrange(0,len(t)-1):
	dt.append(t[tt+1]-t[tt])

figure(1)
plot(dt,t[:len(t)-1])
show()

Downloads