Trait ndarray_odeint::traits::EOM [] [src]

pub trait EOM<A, D> where D: Dimension {
    fn rhs(&self, _: RcArray<A, D>) -> RcArray<A, D>;
}

Equation of motion (EOM)

Required Methods

calculate right hand side (rhs) of EOM from current state

Implementors