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

pub trait EOM<A, S, D> where
    S: Data<Elem = A>,
    D: Dimension
{ fn rhs(self, _: ArrayBase<S, D>) -> ArrayBase<S, D>; }

Equation of motion (EOM)

Required Methods

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

Implementors