pub trait SymmetricTridiagonal {
    type Decomp;

    fn sym_tridiagonal(self) -> Result<Self::Decomp>;
}
Expand description

Tridiagonal decomposition of a non-empty symmetric matrix

Required Associated Types

Required Methods

Calculate the tridiagonal decomposition of a symmetric matrix, consisting of symmetric tridiagonal matrix T and orthogonal matrix Q, such that Q * T * Q.t yields the original matrix.

Implementations on Foreign Types

Implementors