Equivalent of Matlab's deval in DifferentialEquations.jl

Is there a function like deval in DifferentialEquations.jl?

If what you are after is controlling which points the solution is saved at, there is a saveat keyword argument for the solve method.
See e.g. Getting Started with Differential Equations in Julia · DifferentialEquations.jl for example usage.

1 Like

Fantastic, thanks. This is exactly what I wanted.