Trait wee_matrix::CloneSub [] [src]

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

Trait providing a method for cloning a submatrix of an existing matrix into an entirely new matrix of type Self::Output, given ranges of type R and S. Copies data from the original matrix, creating a new underlying matrix data store.

Associated Types

The submatrix output type

Required Methods

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

Implementors