pub fn l2_norm<T, const D: usize>(
x: &Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>,
) -> Twhere
T: RealNumber,Expand description
The l2-norm of v.
This is also known as the Euclidean norm.
This is the same value as returned by length() and
magnitude().