1#[cfg(feature = "approx")]
2mod approx;
3mod base;
4#[cfg(feature = "rand")]
5mod distr;
6mod format;
7mod ops;
8mod product;
9mod square;
10#[cfg(test)]
11mod tests;
12mod transpose;
13mod math;
14
15pub use base::*;
16#[cfg(feature = "rand")]
17pub use distr::*;
18
19pub type Matrix2x2<T> = Matrix<T, 2, 2>;
20pub type Matrix2x3<T> = Matrix<T, 2, 3>;
21pub type Matrix2x4<T> = Matrix<T, 2, 4>;
22pub type Matrix3x2<T> = Matrix<T, 3, 2>;
23pub type Matrix3x3<T> = Matrix<T, 3, 3>;
24pub type Matrix3x4<T> = Matrix<T, 3, 4>;
25pub type Matrix4x2<T> = Matrix<T, 4, 2>;
26pub type Matrix4x3<T> = Matrix<T, 4, 3>;
27pub type Matrix4x4<T> = Matrix<T, 4, 4>;