naginterfaces.library.lapacklin.dgbcon¶
- naginterfaces.library.lapacklin.dgbcon(norm, kl, ku, ab, ipiv, anorm)[source]¶
dgbcon
estimates the condition number of a real band matrix , where has been factorized bydgbtrf()
.For full information please refer to the NAG Library document for f07bg
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/f07/f07bgf.html
- Parameters
- normstr, length 1
Indicates whether or is estimated.
or
is estimated.
is estimated.
- klint
, the number of subdiagonals within the band of the matrix .
- kuint
, the number of superdiagonals within the band of the matrix .
- abfloat, array-like, shape
The factorization of , as returned by
dgbtrf()
.- ipivint, array-like, shape
The pivot indices, as returned by
dgbtrf()
.- anormfloat
If or , the -norm of the original matrix .
If , the -norm of the original matrix .
may be computed by calling
blas.dlangb
with the same value for the argument .must be computed either before calling
dgbtrf()
or else from a copy of the original matrix .
- Returns
- rcondfloat
An estimate of the reciprocal of the condition number of . is set to zero if exact singularity is detected or the estimate underflows. If is less than machine precision, is singular to working precision.
- Raises
- NagValueError
- (errno )
On entry, error in parameter .
Constraint: , or .
- (errno )
On entry, error in parameter .
Constraint: .
- (errno )
On entry, error in parameter .
Constraint: .
- (errno )
On entry, error in parameter .
Constraint: .
- (errno )
On entry, error in parameter .
Constraint: .
- Notes
dgbcon
estimates the condition number of a real band matrix , in either the -norm or the -norm:Note that .
Because the condition number is infinite if is singular, the function actually returns an estimate of the reciprocal of the condition number.
The function should be preceded by a call to
blas.dlangb
to compute or , and a call todgbtrf()
to compute the factorization of . The function then uses Higham’s implementation of Hager’s method (see Higham (1988)) to estimate or .
- References
Higham, N J, 1988, FORTRAN codes for estimating the one-norm of a real or complex matrix, with applications to condition estimation, ACM Trans. Math. Software (14), 381–396