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

Required Methods§

source

fn to_col(&self) -> Matrix

source

fn to_row(&self) -> Matrix

Implementations on Foreign Types§

source§

impl ConvToMat for Vec<f64>

source§

fn to_col(&self) -> Matrix

source§

fn to_row(&self) -> Matrix

Implementors§