Trait nalgebra::RowSlice [] [src]

pub trait RowSlice<R> {
    fn row_slice(&self, row_id: usize, col_start: usize, col_end: usize) -> R;
}

Trait to access part of a row of a matrix

Required Methods

fn row_slice(&self, row_id: usize, col_start: usize, col_end: usize) -> R

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

Implementors