Trait peroxide::traits::math::MatrixProduct

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

Matrix Products

Required Methods§

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§