[−][src]Trait ndarray_linalg::solve::ReciprocalConditionNumInto
An interface for estimating the reciprocal condition number of matrices.
Required methods
fn rcond_into(self) -> Result<A::Real>
Estimates the reciprocal of the condition number of the matrix in 1-norm.
This method uses the LAPACK *gecon routines, which estimate
self.inv().opnorm_one() and then compute rcond = 1. / (self.opnorm_one() * self.inv().opnorm_one()).
- If
rcondis near0., the matrix is badly conditioned. - If
rcondis near1., the matrix is well conditioned.
Implementations on Foreign Types
impl<A, S> ReciprocalConditionNumInto<A> for ArrayBase<S, Ix2> where
A: Scalar + Lapack,
S: DataMut<Elem = A> + RawDataClone, [src]
A: Scalar + Lapack,
S: DataMut<Elem = A> + RawDataClone,
fn rcond_into(self) -> Result<A::Real>[src]
Implementors
impl<A, S> ReciprocalConditionNumInto<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone, [src]
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,