Ask Your Question

fmonegaglia's profile - activity

2018-01-04 21:16:29 +0200 received badge  Teacher (source)
2018-01-04 21:16:29 +0200 received badge  Necromancer (source)
2013-12-19 04:12:26 +0200 received badge  Editor (source)
2013-12-19 04:11:32 +0200 answered a question solve complex ODE (like f'(x) = I*f(x)) numerically

python's scipy.integrate.ode handles solution of variable coefficient complex valued ODE systems by means of the zvode fortran routine. see http://docs.scipy.org/doc/scipy/refer.... you can easily integrate your sage function in python

2013-12-19 04:09:55 +0200 answered a question ode_solver : unable to convert to float

scipy.integrate.ode hanldes numerical solution of variable coefficient complex valued ODEs, by means of the quite fast 'zvode' fortran routine. see http://docs.scipy.org/doc/scipy/refer...