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

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

Loading content...

Implementations on Foreign Types

impl Nrm2 for f32[src]

impl Nrm2 for f64[src]

impl Nrm2 for Complex32[src]

impl Nrm2 for Complex64[src]

Loading content...

Implementors

Loading content...