@@ -49,7 +49,6 @@ use ndarray::*;
49
49
50
50
use super :: convert:: * ;
51
51
use super :: error:: * ;
52
- use super :: lapack_traits:: opnorm:: NormType ;
53
52
use super :: layout:: * ;
54
53
use super :: opnorm:: OperationNorm ;
55
54
use super :: types:: * ;
@@ -428,8 +427,8 @@ pub trait ReciprocalConditionNum<A: Scalar> {
428
427
/// 1-norm.
429
428
///
430
429
/// This method uses the LAPACK `*gecon` routines, which *estimate*
431
- /// `self.inv().opnorm(One )` and then compute `rcond = 1. /
432
- /// (self.opnorm(One ) * self.inv().opnorm(One ))`.
430
+ /// `self.inv().opnorm_one( )` and then compute `rcond = 1. /
431
+ /// (self.opnorm_one( ) * self.inv().opnorm_one( ))`.
433
432
///
434
433
/// * If `rcond` is near `0.`, the matrix is badly conditioned.
435
434
/// * If `rcond` is near `1.`, the matrix is well conditioned.
@@ -442,8 +441,8 @@ pub trait ReciprocalConditionNumInto<A: Scalar> {
442
441
/// 1-norm.
443
442
///
444
443
/// This method uses the LAPACK `*gecon` routines, which *estimate*
445
- /// `self.inv().opnorm(One )` and then compute `rcond = 1. /
446
- /// (self.opnorm(One ) * self.inv().opnorm(One ))`.
444
+ /// `self.inv().opnorm_one( )` and then compute `rcond = 1. /
445
+ /// (self.opnorm_one( ) * self.inv().opnorm_one( ))`.
447
446
///
448
447
/// * If `rcond` is near `0.`, the matrix is badly conditioned.
449
448
/// * If `rcond` is near `1.`, the matrix is well conditioned.
@@ -460,7 +459,7 @@ where
460
459
A :: rcond (
461
460
self . a . layout ( ) ?,
462
461
self . a . as_allocated ( ) ?,
463
- self . a . opnorm ( NormType :: One ) ?,
462
+ self . a . opnorm_one ( ) ?,
464
463
)
465
464
}
466
465
}
0 commit comments