Function l2_norm

Source
pub fn l2_norm<T, const D: usize>(
    x: &Matrix<T, Const<D>, Const<1>, ArrayStorage<T, D, 1>>,
) -> T
where 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().

ยงSee also: