Function column

Source
pub fn column<T, const R: usize, const C: usize>(
    m: &Matrix<T, Const<R>, Const<C>, ArrayStorage<T, R, C>>,
    index: usize,
) -> Matrix<T, Const<R>, Const<1>, ArrayStorage<T, R, 1>>
where T: Scalar,
Expand description

The index-th column of the matrix m.

ยงSee also: