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

Required methods

Implementations on Foreign Types

Implementors