Trait wee_matrix::SingularValueDecompose [] [src]

pub trait SingularValueDecompose: Sized {
    type SingularValueStore;
    fn svd(&self) -> Result<SVD<Self, Self::SingularValueStore>, Error>;
}

Trait that provides singular value decomposition

Associated Types

Storage type for singular values

Required Methods

Perform singular value decomposition into SVD structure.

Implementors