[][src]Trait peroxide::traits::math::Normed

pub trait Normed: Vector {
    type Scalar;
    fn norm(&self, kind: Norm) -> Self::Scalar;
fn normalize(&self, kind: Norm) -> Self
    where
        Self: Sized
; }

Normed Vector

Associated Types

type Scalar

Loading content...

Required methods

fn norm(&self, kind: Norm) -> Self::Scalar

fn normalize(&self, kind: Norm) -> Self where
    Self: Sized

Loading content...

Implementations on Foreign Types

impl Normed for Vec<Dual>[src]

type Scalar = Dual

impl Normed for Vec<f64>[src]

type Scalar = f64

impl Normed for f64[src]

type Scalar = f64

Loading content...

Implementors

impl Normed for Matrix[src]

type Scalar = f64

Loading content...