davidpraise45/Audio-Signal-Processing

TypeError

Opened this issue · 6 comments

FourierTransformation = sp.fft(array)
TypeError: 'module' object is not callable

Maybe like so? -

from scipy import fft
transformedData = fft(array)

hmmm.... is it the same error as before? The TypeError?

Ok I see. What you are calling is a module, not a method. You have to do something like -

from scipy.fft import fft
transformedData = fft(array)

FourierTransformation = sp.fft(array)
TypeError: 'module' object is not callable

Same error please help

did u try what I showed? I think that is the solution