pub trait ConvToMat {
    fn to_col(&self) -> Matrix;
    fn to_row(&self) -> Matrix;
}

Required Methods

Implementations on Foreign Types

Implementors