pub trait Nrm2: Sized { // Required method fn nrm2<V: ?Sized + Vector<Self>>(x: &V) -> Self; }
Computes the L2 norm (Euclidian length) of a vector.