Trait nalgebra::ColSlice [] [src]

pub trait ColSlice<C> {
    fn col_slice(&self, col_id: usize, row_start: usize, row_end: usize) -> C;
}

Trait to access part of a column of a matrix

Required Methods

fn col_slice(&self, col_id: usize, row_start: usize, row_end: usize) -> C

Returns a view to a slice of a column of a matrix.

Implementors