logo

Trait neuronika::VecVecMul[][src]

pub trait VecVecMul<Rhs> {
    type Output;
    fn vv(self, other: Rhs) -> Self::Output;
}
Expand description

Vector-vector multiplication, a.k.a. dot product or inner product.

Associated Types

The type of the dot product’s result. See the differentiability arithmetic for more details.

Required methods

Computes the dot product between self and other.

Implementors