Re: Is there a package with convolution and related methods?

2005-04-25 Thread Miki Tebeka
Hello Charles,

 Is there a Python package with Convolution and related methods?
 
 I'm working on modeling some DSP processes in Python.  I've rolled one
 up, but don't feel much like reinventing the wheel, especially if
 there's already something like Insanely Efficient FFT for Python
 already.
Have you looked at NumArray 
(http://www.stsci.edu/resources/software_hardware/numarray)
and SciPy (http://www.scipy.org/)?

I also think that gmp (http://www.swox.com/gmp/) which has Python binding
(http://gmpy.sourceforge.net/) has FFT.

HTH.
--

Miki Tebeka [EMAIL PROTECTED]
http://tebeka.bizhat.com
The only difference between children and adults is the price of the toys


pgpDuAgLkeESh.pgp
Description: PGP signature
-- 
http://mail.python.org/mailman/listinfo/python-list

Is there a package with convolution and related methods?

2005-04-21 Thread Charles Krug
List:

Is there a Python package with Convolution and related methods?

I'm working on modeling some DSP processes in Python.  I've rolled one
up, but don't feel much like reinventing the wheel, especially if
there's already something like Insanely Efficient FFT for Python
already.

Thanks


Charles

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Is there a package with convolution and related methods?

2005-04-21 Thread David M. Cooke
Charles Krug [EMAIL PROTECTED] writes:

 List:

 Is there a Python package with Convolution and related methods?

 I'm working on modeling some DSP processes in Python.  I've rolled one
 up, but don't feel much like reinventing the wheel, especially if
 there's already something like Insanely Efficient FFT for Python
 already.

 Thanks

You most certainly want to look at the numerical python packages
Numeric and numarray (http://numeric.scipy.org/) for array
manipulations, and scipy (http://scipy.org) has wraps for FFTW (Fast
Fourier Transform in the West).

-- 
||\/|
/--\
|David M. Cooke
|cookedm(at)physics(dot)mcmaster(dot)ca
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Is there a package with convolution and related methods?

2005-04-21 Thread Charles Krug
On Thu, 21 Apr 2005 13:13:17 -0400, David M. Cooke
[EMAIL PROTECTED] wrote:
 Charles Krug [EMAIL PROTECTED] writes:
 
 List:

 Is there a Python package with Convolution and related methods?

 I'm working on modeling some DSP processes in Python.  I've rolled one
 up, but don't feel much like reinventing the wheel, especially if
 there's already something like Insanely Efficient FFT for Python
 already.

 Thanks
 
 You most certainly want to look at the numerical python packages
 Numeric and numarray (http://numeric.scipy.org/) for array
 manipulations, and scipy (http://scipy.org) has wraps for FFTW (Fast
 Fourier Transform in the West).
 

Great, thanks.

Figured someone had done it.

-- 
http://mail.python.org/mailman/listinfo/python-list