[][src]Trait hcomplex::Norm

pub trait Norm: Sized {
    type Output;
    pub fn norm(self) -> Self::Output;

    pub fn abs(self) -> Self::Output { ... }
}

L2 (Euclidean) Norm.

Associated Types

Loading content...

Required methods

pub fn norm(self) -> Self::Output[src]

Get the norm of the self.

Loading content...

Provided methods

pub fn abs(self) -> Self::Output[src]

Alias to norm.

Loading content...

Implementations on Foreign Types

impl Norm for i8[src]

type Output = Self

impl Norm for i16[src]

type Output = Self

impl Norm for i32[src]

type Output = Self

impl Norm for i64[src]

type Output = Self

impl Norm for f32[src]

type Output = Self

impl Norm for f64[src]

type Output = Self

Loading content...

Implementors

impl<T, U> Norm for Construct<T, U> where
    T: Float,
    Self: NormSqr<Output = T>, 
[src]

type Output = T

Loading content...