1个不稳定版本
使用旧的Rust 2015
0.1.0 | 2018年7月7日 |
---|
14KB
224 行
optimize
此crate提供(非线性)数值优化方法。
它主要基于 scipy.optimize
。
此crate正在积极开发并扩展以包括更多方法。
以下是一个简单示例
// Define a function that we aim to minimize
let function = |x: ArrayView1<f64>| (1.0 - x[0]).powi(2) + 100.0 * (x[1] - x[0].powi(2)).powi(2);
// Create a minimizer using the builder pattern. If some of the parameters are not given, default values are used.
let minimizer = NelderMeadBuilder::default()
.xtol(1e-6f64)
.ftol(1e-6f64)
.maxiter(50000)
.build()
.unwrap();
// Set the starting guess
let args = Array::from_vec(vec![3.0, -8.3]);
// Run the optimization
let ans = minimizer.minimize(&function, args.view());
// Print the optimized values
println!("Final optimized arguments: {}", ans);
依赖
~3.5MB
~78K SLoC