[][src]Trait hcomplex::NormL1

pub trait NormL1 {
    type Output;
    pub fn norm_l1(self) -> Self::Output;
}

L1 (Manhattan) Norm.

Associated Types

Loading content...

Required methods

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

Get the L1 norm of the self.

Loading content...

Implementations on Foreign Types

impl NormL1 for i8[src]

type Output = Self

impl NormL1 for i16[src]

type Output = Self

impl NormL1 for i32[src]

type Output = Self

impl NormL1 for i64[src]

type Output = Self

impl NormL1 for f32[src]

type Output = Self

impl NormL1 for f64[src]

type Output = Self

Loading content...

Implementors

impl<T, U> NormL1 for Construct<T, U> where
    T: Add<Output = T>,
    U: NormL1<Output = T>, 
[src]

type Output = T

Loading content...