[SciPy-user] why the fft in scipy can't give the same result as the fft from matlab

Robert Kern robert.kern at gmail.com
Thu May 15 13:35:43 EDT 2008


On Thu, May 15, 2008 at 12:20 PM, zhang chi <zhangchipr at gmail.com> wrote:
> hi
> ys = randn(64)
> Yf = fftpack.fft(ys,128)
>
> why Yf.shape=64,128?

In [1]: from numpy import *

In [2]: from scipy import fftpack

In [3]: ys = random.rand(64)

In [4]: Yf = fftpack.fft(ys, 128)

In [5]: Yf.shape
Out[5]: (128,)


Can you show us a complete piece of code with its output that
demonstrates the behavior that you are seeing? What versions of numpy
and scipy are you using?

-- 
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless
enigma that is made terrible by our own mad attempt to interpret it as
though it had an underlying truth."
 -- Umberto Eco



More information about the SciPy-User mailing list