Sized matrices using const generics for better type checking and performance.
```rust use sized_matrix::{Matrix, Vector};
let a: Matrix
let b: Matrix
let c: Matrix
assert_eq!(c, Matrix::rows([ [ 43, 72], [ 91, 156], [139, 240], ]));
let d: Vector
let e: Vector
assert_eq!(e, Matrix::vector([ 29, 65, 101, ])); ```
To use this, add it as a dependency to your Cargo.toml:
toml
[dependencies]
sized_matrix = "^0.2.5"