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
f!(du, u, p, t) = du .=1.01u # deterministic part
sde =CoupledSDEs(f!, zeros(2));
ode =CoupledODEs(sde)
jacobian(sde) # failsjacobian(ode) # works
ode isa CoreDynamicalSystem # true
sde isa CoreDynamicalSystem # false
ode isa ContinuousTimeDynamicalSystem # true
sde isa ContinuousTimeDynamicalSystem # true
How come that CoupledSDEs is not CoreDynamicalSystem?
The text was updated successfully, but these errors were encountered:
How come that CoupledSDEs is not CoreDynamicalSystem?
The text was updated successfully, but these errors were encountered: