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 golden_section::golden_section_search;pub use brents_method::brent_search;pub use brents_df_method::brent_df_search;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.