Trait peroxide::traits::math::MatrixProduct[][src]

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

Matrix Products

Required methods

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

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

Implementors

impl MatrixProduct for Matrix[src]

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

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