pub trait MatrixProduct {
    fn kronecker(&self, other: &Self) -> Matrix;
fn hadamard(&self, other: &Self) -> Matrix; }
Expand description

Matrix Products

Required methods

Implementors