pub type RowVector<const N: usize, T> = Matrix<1, N, T>;
A matrix with one row and N columns.
N
struct RowVector<const N: usize, T> { /* private fields */ }