Module root_finding

Module root_finding 

Source
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§

RootFindingConfig
Configuration for root-finding algorithms
RootResult
Result of root-finding operation

Traits§

RootFinder
Trait for root-finding methods