This fast and simple-to-use library provides the ability to perform linear algebra within Rust. It provides matrices and vectors as well as complex numbers for all your computing needs.
Examples
Use lines
If you want to use a matrix, you ned to import it. Operations are included as default too.
use Matrix;
A new matrix
new;
Make sure that the array you give is two dimensional and that each element is the same size
DTypes
You can change the dtype (data type taken from NumPy) with the dtype function
new.;
Decomposition
If you need to use decompositions, you'll need to specify that:
use ;
let a = new;
a.lu_decompose;
a.plu_decompose;
a.diagonalise;
Contribute
If you want to contribute, feel free. That is the nature of open source after all. Do a pull request or something.