pub trait FromMatrix<T>where
    T: RealNumber,
{ type Output; fn get(self) -> (Self::Output, usize); }
Expand description

Retrieves the underlying storage from a matrix.

Required Associated Types

Type of the underlying storage of a matrix.

Required Methods

Gets the underlying matrix and the number of elements which contain valid.

Implementors