Trait rustlearn::array::traits::Dot [] [src]

pub trait Dot<Rhs> {
    type Output;
    fn dot(&self, rhs: Rhs) -> Self::Output;
}

A matrix multiplication trait.

Associated Types

type Output

Required Methods

fn dot(&self, rhs: Rhs) -> Self::Output

Implementors