Skip to main content

Cholesky

Trait Cholesky 

Source
pub trait Cholesky {
    type Elem;

    // Required method
    fn cholesky(&self, uplo: UPLO) -> Result<Array2<Self::Elem>, LapackError>;
}
Expand description

Cholesky decomposition trait

Required Associated Types§

Required Methods§

Source

fn cholesky(&self, uplo: UPLO) -> Result<Array2<Self::Elem>, LapackError>

Implementors§