pub trait FactorizeTridiagonal<A: Scalar> {
// Required method
fn factorize_tridiagonal(&self) -> Result<LUFactorizedTridiagonal<A>>;
}Expand description
An interface for computing LU factorizations of tridiagonal matrix refs.
Required Methods§
Sourcefn factorize_tridiagonal(&self) -> Result<LUFactorizedTridiagonal<A>>
fn factorize_tridiagonal(&self) -> Result<LUFactorizedTridiagonal<A>>
Computes the LU factorization A = P*L*U, where P is a permutation
matrix.