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

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

Computes x^H * y.

Provided methods

Implementations on Foreign Types

Implementors