Trait rust_blas::vector::ops::Nrm2[][src]

pub trait Nrm2: Sized {
    fn nrm2<V: ?Sized + Vector<Self>>(x: &V) -> Self;
}
Expand description

Computes the L2 norm (Euclidian length) of a vector.

Required methods

Implementations on Foreign Types

Implementors