Rust library that allows matrix operations.
let matrix = Matrix::new(
vec![
vec![13, 43, 24],
vec![53, -1, 0],
]
);At this moment, you cannot do anything else than printing it.
- add
- multiplication (matrix)
- multiplication (int)