pub fn lotka_volterra_system<Var, Coef>(
vars: &[Var],
interaction_coeffs: DMatrix<Coef>,
growth_rates: DVector<Coef>,
) -> PolynomialSystem<Var, Coef, u8>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.