lotka_volterra_system

Function lotka_volterra_system 

Source
pub fn lotka_volterra_system<Var, Coef>(
    vars: &[Var],
    interaction_coeffs: DMatrix<Coef>,
    growth_rates: DVector<Coef>,
) -> PolynomialSystem<Var, Coef, u8>
where Var: Clone + Hash + Ord, Coef: Clone + Add<Output = Coef> + One + Scalar + Zero,
Expand description

Construct a Lotka-Volterra dynamical system.

A system of ODEs that is affine in its logarithmic derivative. These are sometimes called the “generalized Lotka-Volterra equations.” For more, see Wikipedia.