Type Definition static_la::ColumnVectorS

source · []
pub type ColumnVectorS<T, const ROWS: usize> = MatrixSxS<T, ROWS, 1>;
Expand description

A matrix with 1 column and a static number of rows.

E.g.

┌───┐
│ 1 │
│ 2 │
│ 3 │
└───┘