naginterfaces.library.lapacklin.zhesvx

naginterfaces.library.lapacklin.zhesvx(fact, uplo, a, af, ipiv, b)[source]

zhesvx uses the diagonal pivoting factorization to compute the solution to a complex system of linear equations

where is an Hermitian matrix and and are matrices. Error bounds on the solution and a condition estimate are also provided.

For full information please refer to the NAG Library document for f07mp

https://www.nag.com/numeric/nl/nagdoc_29.3/flhtml/f07/f07mpf.html

Parameters
factstr, length 1

Specifies whether or not the factorized form of the matrix has been supplied.

and contain the factorized form of the matrix . and will not be modified.

The matrix will be copied to and factorized.

uplostr, length 1

If , the upper triangle of is stored.

If , the lower triangle of is stored.

acomplex, array-like, shape

The Hermitian matrix .

afcomplex, array-like, shape

If , contains the block diagonal matrix and the multipliers used to obtain the factor or from the factorization or as computed by zhetrf().

ipivint, array-like, shape

If , contains details of the interchanges and the block structure of , as determined by zhetrf().

if , is a pivot block and the th row and column of were interchanged with the th row and column;

if and , is a pivot block and the th row and column of were interchanged with the th row and column;

if and , is a pivot block and the th row and column of were interchanged with the th row and column.

bcomplex, array-like, shape

The right-hand side matrix .

Returns
afcomplex, ndarray, shape

If , returns the block diagonal matrix and the multipliers used to obtain the factor or from the factorization or .

ipivint, ndarray, shape

If , contains details of the interchanges and the block structure of , as determined by zhetrf(), as described above.

xcomplex, ndarray, shape

If the function exits successfully or = + 1, the solution matrix .

rcondfloat

The estimate of the reciprocal condition number of the matrix . If , the matrix may be exactly singular. This condition is indicated by in 1 … . Otherwise, if is less than the machine precision, the matrix is singular to working precision. This condition is indicated by = + 1.

ferrfloat, ndarray, shape

If the function exits successfully or = + 1, an estimate of the forward error bound for each computed solution vector, such that where is the th column of the computed solution returned in the array and is the corresponding column of the exact solution . The estimate is as reliable as the estimate for , and is almost always a slight overestimate of the true error.

berrfloat, ndarray, shape

If the function exits successfully or = + 1, an estimate of the component-wise relative backward error of each computed solution vector (i.e., the smallest relative change in any element of or that makes an exact solution).

Raises
NagValueError
(errno )

On entry, error in parameter .

Constraint: or .

(errno )

On entry, error in parameter .

Constraint: or .

(errno )

On entry, error in parameter .

Constraint: .

(errno )

On entry, error in parameter .

Constraint: .

Warns
NagAlgorithmicWarning
(errno )

Element of the diagonal is exactly zero. The factorization has been completed, but the factor is exactly singular, so the solution and error bounds could not be computed. is returned.

(errno )

is nonsingular, but is less than machine precision, meaning that the matrix is singular to working precision. Nevertheless, the solution and error bounds are computed because there are a number of situations where the computed solution can be more accurate than the value of would suggest.

Notes

zhesvx performs the following steps:

  1. If , the diagonal pivoting method is used to factor . The form of the factorization is if or if , where (or ) is a product of permutation and unit upper (lower) triangular matrices, and is Hermitian and block diagonal with and diagonal blocks.

  2. If some , so that is exactly singular, then the function returns with . Otherwise, the factored form of is used to estimate the condition number of the matrix . If the reciprocal of the condition number is less than machine precision, = + 1 is returned as a warning, but the function still goes on to solve for and compute error bounds as described below.

  3. The system of equations is solved for using the factored form of .

  4. Iterative refinement is applied to improve the computed solution matrix and to calculate error bounds and backward error estimates for it.

References

Anderson, E, Bai, Z, Bischof, C, Blackford, S, Demmel, J, Dongarra, J J, Du Croz, J J, Greenbaum, A, Hammarling, S, McKenney, A and Sorensen, D, 1999, LAPACK Users’ Guide, (3rd Edition), SIAM, Philadelphia, https://www.netlib.org/lapack/lug

Golub, G H and Van Loan, C F, 1996, Matrix Computations, (3rd Edition), Johns Hopkins University Press, Baltimore

Higham, N J, 2002, Accuracy and Stability of Numerical Algorithms, (2nd Edition), SIAM, Philadelphia