Mathru is a numeric library containing algorithms for linear algebra, analysis and statistics written in pure Rust with BLAS/LAPACK support.
The following features are impelmented in this create:
Ordinary differential equation (ODE)
elementary functions
special functions
Add this to your Cargo.toml
for the native Rust implementation:
toml
[dependencies.mathru]
version = "^0.6"
Add the following lines to 'Cargo.toml' if the blas/lapack backend should be used:
toml
[dependencies.mathru]
version = "^0.6"
default-features = false
features = ["blaslapack"]
Then import the modules and it is ready to be used.
See project page for more information and examples. The API is documented on docs.rs.
Licensed under
Any contribution is welcome!