differential-equations 0.5.3

A Rust library for solving differential equations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Ordinary Differential Equations (ODE) module.
//!
//! Provides traits and types for defining and solving ODE initial value problems.
//! See [`ODE`] and [`ODEProblem`] for usage.

mod numerical_method;
mod ode;
mod problem;
mod solve;

pub use numerical_method::OrdinaryNumericalMethod;
pub use ode::ODE;
pub use problem::ODEProblem;
pub use solve::solve_ode;