peroxide::prelude::simpler

Trait SimpleNorm

Source
pub trait SimpleNorm: Normed {
    // Required methods
    fn norm(&self) -> Self::Scalar;
    fn normalize(&self) -> Self;
}
Expand description

Simple Norm

Required Methods§

Source

fn norm(&self) -> Self::Scalar

Source

fn normalize(&self) -> Self

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 SimpleNorm for Vec<f64>

Simple L2 norm

Source§

fn norm(&self) -> Self::Scalar

Source§

fn normalize(&self) -> Self

Implementors§

Source§

impl SimpleNorm for Matrix

Simple Frobenius norm