math_ops::normalize

Trait Normalize

source
pub trait Normalize<T> {
    // Required methods
    fn min_max_normalize(&self) -> Vector<T>;
    fn standardize(&self) -> Vector<T>;
}
Expand description

Trait providing normalization methods for Vector<T>.

Required Methods§

Implementors§

source§

impl<T> Normalize<T> for Vector<T>