pub trait LinearOps {
    fn to_matrix(&self) -> Matrix;
    fn transpose(&self) -> Matrix;
    fn t(&self) -> Matrix;
}
Expand description

Common trait for Matrix & Vector

Required Methods§

Implementors§