Trait wee_matrix::SubMatrix [] [src]

pub trait SubMatrix<R, S> {
    type Output;
    fn subm(&self, rngr: R, rngc: S) -> Result<Self::Output, Error>;
}

Trait providing a method for creating a new submatrix view of type Self::Output into an existing matrix, given ranges of type R and S. Does not copy data; provides a new view.

Associated Types

The submatrix output type

Required Methods

Create a new submatrix view from this matrix, using specified row and column ranges.

Implementors