I tried to do FFT with numpy using this:
sp=np.fft.fft(np.exp(-t), 1000, -1, "ortho")
and it returns:
TypeError: fft() takes at most 3 arguments (4 given)
But in the manual, numpy.fft.fft() is defined as:
numpy.fft.fft(a, n=None, axis=-1, norm=None)
n, axis, and norm are optional, and norm can be set to "ortho". Why can't I use what I wrote? Thanks.