From: <jd...@us...> - 2007-10-29 20:06:37
|
Revision: 4063 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4063&view=rev Author: jdh2358 Date: 2007-10-29 13:06:26 -0700 (Mon, 29 Oct 2007) Log Message: ----------- added josh's convolution patch Modified Paths: -------------- trunk/py4science/examples/skel/convolution_demo_skel.py Modified: trunk/py4science/examples/skel/convolution_demo_skel.py =================================================================== --- trunk/py4science/examples/skel/convolution_demo_skel.py 2007-10-29 19:00:25 UTC (rev 4062) +++ trunk/py4science/examples/skel/convolution_demo_skel.py 2007-10-29 20:06:26 UTC (rev 4063) @@ -48,12 +48,12 @@ # to the length of r + x do avoid circular convolution artifacts R = XXX # the zero padded FFT of r X = XXX # the zero padded FFT of x -Y = XXX # the product of R and S +Y = XXX # the product of R and X # now inverse fft and extract the real part, just the part up to # len(x) yi = XXX -# plot t vs x, t vs y and yi, and t vs r in three subplots +# plot x vs t, y and yi vs t, and r vs t in three subplots XXX show() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |