peroxide::traits::math

Trait Normed

Source
pub trait Normed: Vector {
    type UnsignedScalar;

    // Required methods
    fn norm(&self, kind: Norm) -> Self::UnsignedScalar;
    fn normalize(&self, kind: Norm) -> Self
       where Self: Sized;
}
Expand description

Normed Vector

Required Associated Types§

Required Methods§

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Normed for f64

Source§

type UnsignedScalar = f64

Source§

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

Source§

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

Source§

impl Normed for Vec<f64>

Source§

type UnsignedScalar = f64

Source§

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

Source§

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

Source§

impl Normed for Vec<Complex<f64>>

Source§

type UnsignedScalar = f64

Source§

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

Source§

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

Source§

impl Normed for Complex<f64>

Source§

type UnsignedScalar = f64

Source§

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

Source§

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

Implementors§