Expand description
Root-finding algorithms
Provides numerical methods for finding roots (zeros) of functions. All methods work with closures for maximum flexibility.
Re-exports§
pub use bisection::BisectionMethod;pub use newton_raphson::NewtonRaphson;pub use secant::SecantMethod;
Modules§
- bisection
- Bisection method for root finding
- newton_
raphson - Newton-Raphson method for root finding
- secant
- Secant method for root finding
Structs§
- Root
Finding Config - Configuration for root-finding algorithms
- Root
Result - Result of root-finding operation
Traits§
- Root
Finder - Trait for root-finding methods