pub trait ODESystem {
// Required method
fn vector_field(&self, dx: &mut DVector<f32>, x: &DVector<f32>, t: f32);
// Provided method
fn eval_vector_field(&self, x: &DVector<f32>, t: f32) -> DVector<f32> { ... }
}
Expand description
A system of ordinary differential equations (ODEs).
An ODE system is anything that can compute a vector field.