Trait rblas::vector::ops::Dot [] [src]

pub trait Dot: Sized {
    fn dot<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        x: &V,
        y: &W
    ) -> Self; }

Computes x^T * y.

Required Methods

Implementors