Trait ndarray_linalg::inner::InnerProduct[][src]

pub trait InnerProduct {
    type Elem: Scalar;
    fn inner<S>(&self, rhs: &ArrayBase<S, Ix1>) -> Self::Elem
    where
        S: Data<Elem = Self::Elem>
; }
Expand description

Inner Product

Differenct from Dot trait, this take complex conjugate of self elements

Associated Types

Required methods

Inner product `(self.conjugate, rhs)

Implementations on Foreign Types

Implementors