oxilean-std 0.1.2

OxiLean standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Nonlinear dynamics module.
//!
//! Provides types and algorithms for nonlinear dynamical systems, including
//! discrete maps (logistic, Hénon, tent), continuous systems (Lorenz, Rössler),
//! Lyapunov exponents, fractal dimensions, Poincaré sections, and bifurcation
//! analysis.

pub mod functions;
pub mod types;

pub use functions::*;
pub use types::*;