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

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

Computes x^T * y.

Required methods

Implementations on Foreign Types

Implementors