Trait nalgebra::ColumnSlice [] [src]

pub trait ColumnSlice<C> {
    fn column_slice(&self, column_id: usize, row_start: usize, row_end: usize) -> C;
}

Trait to access part of a column of a matrix

Required Methods

fn column_slice(&self, column_id: usize, row_start: usize, row_end: usize) -> C

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

Implementors