matrix_kit 0.2.36

An abstract linear algebra library for Rust
Documentation
1
2
3
4
5
6
7
# `matrix_kit`: An abstract linear algebra library for Rust

# Things to do:
- move SVD stuff from mlkit to here
- re-implement matrix appending to be simpler for all version
- Can't actually initialize empty matrices for non-ring types, e.g. can't just
    have Matrix::<u8>::new(4, 4), this has un-initialized flatmap.