pub trait FromMatrix<T>where
T: RealNumber,{
type Output;
// Required method
fn get(self) -> (Self::Output, usize);
}Expand description
Retrieves the underlying storage from a matrix.
pub trait FromMatrix<T>where
T: RealNumber,{
type Output;
// Required method
fn get(self) -> (Self::Output, usize);
}Retrieves the underlying storage from a matrix.