Trait rust_blas::vector::ops::Dot

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

Computes x^T * y.

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Dot for f32

source§

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

source§

impl Dot for f64

source§

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

source§

impl Dot for Complex32

source§

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

source§

impl Dot for Complex64

source§

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

Implementors§