pub type Matrix1x5<T> = Matrix<T, Const<1>, Const<5>, ArrayStorage<T, 1, 5>>;
Expand description

A stack-allocated, column-major, 1x5 matrix.

Because this is an alias, not all its methods are listed here. See the Matrix type too.