matrix_lib
A library implementing the matrices and basic operations on them
Want to contribute?:
My github:
Project:
Support:
Macors
let m1 = matrix!;
// this macro uses ',' to separate columns and ';' to separate rows
let m2 = matrix!;
// this macro is equivalent to matrix
// 1 2 3
// 4 5 6
// 7 8 9
// it splits the vector by length provided after "=>" operator
let vector = vec!;
let m3 = matrix!;