[][src]Trait argmin_core::ArgminWeightedDot

pub trait ArgminWeightedDot<T, U, V> {
    fn weighted_dot(&self, w: &V, vec: &T) -> U;
}

Dot/scalar product of T and self weighted by W (p^TWv)

Required methods

fn weighted_dot(&self, w: &V, vec: &T) -> U

Dot/scalar product of T and self

Loading content...

Implementors

impl<T, U, V> ArgminWeightedDot<T, U, V> for T where
    Self: ArgminDot<T, U>,
    V: ArgminDot<T, T>, 
[src]

Loading content...