Redo capturing of standard output to not use statement rewriting
[reinteract/rox.git] / examples / play.pyw
blobae8d752d363fb3d6fa28ddf542c3c52d5a14b9a6
1 from numpy import *
2 from replot import *
4 # Plot one cycle of a periodic function
5 x = linspace(0, 2 * pi, 50)
6 plot(x, sin(x) + sin(3*x) / 3 + sin(5*x) / 5)
8 # OK, looks good, let's create a bigger data set
9 # and play it
10 from replay import *
12 x = linspace(0, 440 * 2 * pi, 44100)
13 play(sin(x) + sin(3*x) / 3 + sin(5*x) / 5)