1
2
3
4
5
6
7
8
9
//! Linear algebra
//!

pub use self::vector::Vector;
pub use self::matrix::Matrix;

pub mod vector;
pub mod matrix;