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

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

Required Methods

Dot/scalar product of T and self

Implementations on Foreign Types

TEMPORARY: only for testing!

Implementors