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>>,
) -> Twhere
T: RealNumber,Expand description
The dot product of the normalized version of x and y.
This is currently the same as normalize_dot()