pub trait FactorizeTridiagonalInto<A: Scalar> {
    fn factorize_tridiagonal_into(self) -> Result<LUFactorizedTridiagonal<A>>;
}
Expand description

An interface for computing LU factorizations of tridiagonal matrices.

Required Methods

Computes the LU factorization A = P*L*U, where P is a permutation matrix.

Implementors