diff options
Diffstat (limited to 'numpy/fft/fftpack.py')
-rw-r--r-- | numpy/fft/fftpack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/fft/fftpack.py b/numpy/fft/fftpack.py index c3bb732b2..275be0d77 100644 --- a/numpy/fft/fftpack.py +++ b/numpy/fft/fftpack.py @@ -183,7 +183,7 @@ def fft(a, n=None, axis=-1, norm=None): """ - a = asarray(a).astype(complex) + a = asarray(a).astype(complex, copy=False) if n is None: n = a.shape[axis] output = _raw_fft(a, n, axis, fftpack.cffti, fftpack.cfftf, _fft_cache) |