Function cerebral::nd_tools::point_set::row_norm_l2
source · pub fn row_norm_l2<A, S>(points: &ArrayBase<S, Ix2>) -> Array1<A>where
S: Data<Elem = A>,
A: Float,
Expand description
Computes the L2 norm for all rows of a PointSet
Examples
use som_rs::ndarray::point_set::row_norm_l2;
assert_eq!(row_norm_l2(points), );