A collection of numerical solvers in Rust.
Find a file
2023-03-27 22:46:06 +02:00
.vscode Added Nelder-Mead optimization algorithm. 2023-03-27 22:46:06 +02:00
src Added Nelder-Mead optimization algorithm. 2023-03-27 22:46:06 +02:00
.gitignore does not work yet. problems with closure as argument 2023-03-25 22:43:27 +01:00
Cargo.toml Added Nelder-Mead optimization algorithm. 2023-03-27 22:46:06 +02:00
README.md Added README.md 2023-03-26 11:07:34 +02:00

rust-numerical-solvers

A collection of numerical solvers in Rust. This library exists mainly as a coding exercise, but is useful nonetheless.

Contents of the library

Several types of solvers and optimizers exist in this library:

  • Solvers
    • Univariate
      • Gradient-based methods
      • Non gradient-based methods
    • Multivariate
      • Gradient-based methods
  • Optimizers
    • Univariate
      • Gradient-based methods
      • Non gradient-based methods
    • Multivariate
      • Gradient-based methods
      • Non gradient-based methods

Some methods that require derivative/gradient information have a fully-numerical version, where derivatives are evaluated using finite-differences. Prefer providing analytical gradients to the methods.