matrix-math 0.1.1

A Rust library for Mathematical matrices.
Documentation
1
2
pub type MatrixRef<'m, T> = &'m [Vec<T>];
pub type Matrix<T> = Vec<Vec<T>>;