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

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

fn dot<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(x: &V, y: &W) -> Self

Loading content...

Implementations on Foreign Types

impl Dot for f32[src]

impl Dot for f64[src]

impl Dot for Complex32[src]

impl Dot for Complex64[src]

Loading content...

Implementors

Loading content...