Trait rust_blas::vector::ops::Nrm2

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

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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Nrm2 for f32

source§

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

source§

impl Nrm2 for f64

source§

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

source§

impl Nrm2 for Complex32

source§

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

source§

impl Nrm2 for Complex64

source§

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

Implementors§