Explicitly define the fft function

This commit is contained in:
Roman Yurchak 2018-10-03 16:57:11 +02:00
parent 59e8bd4d5f
commit ffe5134623
1 changed files with 2 additions and 1 deletions

View File

@ -5,4 +5,5 @@
import numpy as np
fft = np.fft
def fft(x):
return np.fft(x)