Trait peroxide::traits::math::MatrixProduct

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

Matrix Products

Required Methods§

source

fn kronecker(&self, other: &Self) -> Matrix

source

fn hadamard(&self, other: &Self) -> Matrix

Object Safety§

This trait is not object safe.

Implementors§