mathru 0.16.2

Fundamental algorithms for scientific computing in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Explicit Ordinary Differential Equation

use crate::algebra::{abstr::Real, linear::vector::vector::Vector};

/// Explicit ordinary differential equation
pub trait ExplicitODE<T>
where
    T: Real,
{
    fn ode(&self, t: &T, x: &Vector<T>) -> Vector<T>;
}