nalgebra/src/linalg/mod.rs
Sébastien Crozet 40c9915870 Add the types: DVec1, .., DVec6.
They are stack-allocated, dynamically sized vectors with a maximum size.
This is useful for slicing small matrices, without allocation.
2014-08-16 12:16:26 +02:00

5 lines
88 B
Rust

pub use self::decompositions::{qr, eigen_qr, householder_matrix};
mod decompositions;