pub trait SimpleNorm: Normed {
// Required methods
fn norm(&self) -> Self::Scalar;
fn normalize(&self) -> Self;
}
Expand description
Simple Norm
Required Methods§
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>
impl SimpleNorm for Vec<f64>
Simple L2 norm
Implementors§
impl SimpleNorm for Matrix
Simple Frobenius norm