Crate rustamath_mnmz

Crate rustamath_mnmz 

Source
Expand description

Mimimization functions.

(c) 2023 Igor Lesik MIT license

Task of minimization: for given function f that depends on one or more independent variables, find the value of those variables where f takes on a minimum value.

Re-exports§

pub use bracket::find_bracket;
pub use bracket::BracketRes;
pub use simplex::amoeba;

Modules§

bracket
Bracket function minimum.
brents_df_method
Brent’s method with First Derivative for searching for a minimum.
brents_method
Brent’s method for searching for a minimum.
golden_section
Golden section search for a minimum.
simplex
Downhill Simplex Method in Multidimensions.