Function fast_normalize_dot

Source
pub fn fast_normalize_dot<T, const D: usize>(
    x: &Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>,
    y: &Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>,
) -> T
where T: RealNumber,
Expand description

The dot product of the normalized version of x and y.

This is currently the same as normalize_dot.

ยงSee also: