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

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

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

Required Methods

fn nrm2<V: ?Sized + Vector<Self>>(x: &V) -> Self

Implementors