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
This is f!(dx, x, p, t) (in-place version) and f(x, p, t) (out-of-place version). It is the "canonical" function signature in DifferentialEquations.jl
We can call this internally a NonlinearContinuousSystem. Example:
f(x, p, t) =1.01*x
p =@ivp(x'=f(x, p, t), x(0) ∈0..1)
solve(p, T=1.0) # only time horizon is given; initial time is implicitly 0solve(p, tspan=(0.0, 1.0))
The text was updated successfully, but these errors were encountered:
One has to extract the vector field from the initial-value problem and construct the corresponding ODEProblem. Additional arguments and problem options can just be passed through. With the idea of VectorField from this comment, i prototyped this feature in ReachabilityAnalysis.jl, so you can do:
This is
f!(dx, x, p, t)
(in-place version) andf(x, p, t)
(out-of-place version). It is the "canonical" function signature in DifferentialEquations.jlWe can call this internally a
NonlinearContinuousSystem
. Example:The text was updated successfully, but these errors were encountered: