lin_algebra
A Rust library for linear algebra.
Features
All operations are currently implemented for matrices over GF(2):
- Compute the echelon form of a matrix along with the history of all the row operations applied
- Compute the rank of the linear application represented by a matrix
- Compute the kernel of the linear application represented by a matrix
- Compute the image of the linear application represented by a matrix.
Installation
Add the dependency to your Cargo.toml:
[]
= "0.1.0"
Usage
use GF2Matrix;
use MatrixTrait;
License
MIT