The following code gives the error: Cannot cast array data from dtype('complex128') to dtype('float64') according to the rule 'safe'
import numpy as np
from numpy.fft import fft
from scipy.integrate import odeint
t = np.linspace(0,9,10)
def func(y, t):
k = 0
dydt = fft(y)
return dydt
y0 = 0
y = odeint(func, y0, t)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-3-4885da912033> in <module>
10
11 y0 = 0
---> 12 y = odeint(func, y0, t)
~\AppData\Local\Continuum\anaconda3\envs\udacityDL\lib\site-packages\scipy\integrate\odepack.py in odeint(func, y0, t, args, Dfun, col_deriv, full_output, ml, mu, rtol, atol, tcrit, h0, hmax, hmin, ixpr, mxstep, mxhnil, mxordn, mxords, printmessg, tfirst)
243 full_output, rtol, atol, tcrit, h0, hmax, hmin,
244 ixpr, mxstep, mxhnil, mxordn, mxords,
--> 245 int(bool(tfirst)))
246 if output[-1] < 0:
247 warning_msg = _msgs[output[-1]] + " Run with full_output = 1 to get quantitative information."
TypeError: Cannot cast array data from dtype('complex128') to dtype('float64') according to the rule 'safe'
However, if I return real values (instead of complex) from func like:
def func(y, t):
k = 0
dydt = fft(y)
return np.abs(dydt)
Then the odeint worked without any error.
Could anyone please help me identifying the source of/solving this problem?
Thanks in advance!
vhat) more local to avoid the phase errors when reducing large numbers modulo2*pi. - Lutz Lehmann