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