Struct linfa_preprocessing::whitening::Whitener[][src]

pub struct Whitener { /* fields omitted */ }

Struct that can be fitted to the input data to obtain the related whitening matrix. Fitting returns a FittedWhitener struct that can be used to apply the whitening transformation to the input data.

Implementations

impl Whitener[src]

pub fn pca() -> Self[src]

Creates an instance of a Whitener that uses the PCA method

pub fn zca() -> Self[src]

Creates an instance of a Whitener that uses the ZCA (Mahalanobis) method

pub fn cholesky() -> Self[src]

Creates an instance of a Whitener that uses the cholesky decomposition of the inverse of the covariance matrix

pub fn method(self, method: WhiteningMethod) -> Self[src]

Trait Implementations

impl<F: Float, D: Data<Elem = F>, T: AsTargets> Fit<ArrayBase<D, Dim<[usize; 2]>>, T, Error> for Whitener[src]

type Object = FittedWhitener<F>

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,