Python 2.6.6 (r266:84297, Aug 24 2010, 18:46:32) [MSC v.1500 32 bit (Intel)]

Type "copyright", "credits" or "license" for more information.


IPython 0.12.dev -- An enhanced Interactive Python.

? -> Introduction and overview of IPython's features.

%quickref -> Quick reference.

help -> Python's own help system.

object? -> Details about 'object', use 'object??' for extra details.

%guiref -> A brief reference about the graphical user interface.


In [1]: import wavepy as wv


In [2]: a=ones(8)


In [3]: b=wv.convol.convol(a,a)


In [4]: c=real(wv.convol.convfft(b,a))


In [5]: plot(a),title('Input Signal')

Out[5]: ([<matplotlib.lines.Line2D at 0x2669e50>], <matplotlib.text.Text at 0x267eab0>)


In [6]: plot(b),title('b=convol(a,a)')

Out[6]: ([<matplotlib.lines.Line2D at 0x27224d0>], <matplotlib.text.Text at 0x2780310>)


In [7]: plot(c),title('c=convfft(b,a)')

Out[7]: ([<matplotlib.lines.Line2D at 0x27ae950>], <matplotlib.text.Text at 0x2a06e10>)


In [8]: