pub type RowVectorS<T, const COLUMNS: usize> = MatrixSxS<T, 1, COLUMNS>;
A matrix with 1 row and a static number of columns.
E.g.
┌───────┐ │ 1 2 3 │ └───────┘