You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In autocorr.py, scipy is imported as:
'import scipy as sp'
The function _autocorr_func_1d uses scipy for the fft function. However, in newer versions of scipy, you must call the fft function in the following way or else an AttributeError will occur:
from scipy import fft
fft.fft() # how to use the fft function
Please change this soon. Thank you.
The text was updated successfully, but these errors were encountered:
In autocorr.py, scipy is imported as:
'import scipy as sp'
The function _autocorr_func_1d uses scipy for the fft function. However, in newer versions of scipy, you must call the fft function in the following way or else an AttributeError will occur:
from scipy import fft
fft.fft() # how to use the fft function
Please change this soon. Thank you.
The text was updated successfully, but these errors were encountered: