[−][src]Trait ndarray_linalg::tridiagonal::ReciprocalConditionNumTridiagonalInto
An interface for estimating the reciprocal condition number of tridiagonal matrices.
Required methods
fn rcond_tridiagonal_into(self) -> Result<A::Real>
Estimates the reciprocal of the condition number of the tridiagonal matrix in 1-norm.
This method uses the LAPACK *gtcon routines, which estimate
self.inv_tridiagonal().opnorm_one() and then compute rcond = 1. / (self.opnorm_one() * self.inv_tridiagonal().opnorm_one()).
- If
rcondis near0., the matrix is badly conditioned. - If
rcondis near1., the matrix is well conditioned.
Implementors
impl<A> ReciprocalConditionNumTridiagonalInto<A> for LUFactorizedTridiagonal<A> where
A: Scalar + Lapack, [src]
A: Scalar + Lapack,