deep.ode.options.ODE1
Neural ODE solver options for nonstiff differential equations using Euler method
Since R2025a
Description
A deep.ode.options.ODE1
object specifies options for the
"ode1"
solver of a neural ordinary differential equation (ODE)
layer.
The solver is based on the Euler method. Specify the options object using the SolverOptions
property of a neuralODELayer
object.
Creation
Create a neuralODELayer
object and set the Solver
property to "ode1"
. To set the solver options of the layer, use dot
notation. For example, to set the step size to 0.01
, use
layer.SolverOptions.StepSize = 1
, where layer
is an
instance of the neural ODE layer.
In most cases, you do not need to create the deep.ode.options.ODE1
directly.
Properties
Examples
Algorithms
Version History
Introduced in R2025a
See Also
deep.ode.options.ODE45
| neuralODELayer
| trainnet
| trainingOptions
| dlnetwork
| dlode45