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

Simple Norm

Required Methods

Implementations on Foreign Types

Simple L2 norm

Implementors

Simple Frobenius norm