Trait ndarray_linalg::vector::Norm [] [src]

pub trait Norm {
    type Output;
    fn norm_l1(&self) -> Self::Output;
    fn norm_l2(&self) -> Self::Output;
    fn norm_max(&self) -> Self::Output;

    fn norm(&self) -> Self::Output { ... }
}

Norms of ndarray

Associated Types

Required Methods

L-1 norm

L-2 norm

maximum norm

Provided Methods

rename of norm_l2

Implementors