scipy.fft TypeError: ‘module‘ object is not callable

import scipy
X0 = scipy.fft(x0)

报错 TypeError: ‘module’ object is not callable
改为:

import scipy
X0 = scipy.fft.fft(x0)

你可能感兴趣的:(Python,scipy,python,开发语言,not,callable)