f07fp uses the Cholesky factorization
to compute the solution to a complex system of linear equations
where is an by Hermitian positive definite matrix and and are by matrices. Error bounds on the solution and a condition estimate are also provided.
Syntax
C# |
---|
public static void f07fp( string fact, string uplo, int n, int nrhs, Complex[,] a, Complex[,] af, ref string equed, double[] s, Complex[,] b, Complex[,] x, out double rcond, double[] ferr, double[] berr, out int info ) |
Visual Basic |
---|
Public Shared Sub f07fp ( _ fact As String, _ uplo As String, _ n As Integer, _ nrhs As Integer, _ a As Complex(,), _ af As Complex(,), _ ByRef equed As String, _ s As Double(), _ b As Complex(,), _ x As Complex(,), _ <OutAttribute> ByRef rcond As Double, _ ferr As Double(), _ berr As Double(), _ <OutAttribute> ByRef info As Integer _ ) |
Visual C++ |
---|
public: static void f07fp( String^ fact, String^ uplo, int n, int nrhs, array<Complex,2>^ a, array<Complex,2>^ af, String^% equed, array<double>^ s, array<Complex,2>^ b, array<Complex,2>^ x, [OutAttribute] double% rcond, array<double>^ ferr, array<double>^ berr, [OutAttribute] int% info ) |
F# |
---|
static member f07fp : fact : string * uplo : string * n : int * nrhs : int * a : Complex[,] * af : Complex[,] * equed : string byref * s : float[] * b : Complex[,] * x : Complex[,] * rcond : float byref * ferr : float[] * berr : float[] * info : int byref -> unit |
Parameters
- fact
- Type: System..::..StringOn entry: specifies whether or not the factorized form of the matrix is supplied on entry, and if not, whether the matrix should be equilibrated before it is factorized.Constraint: , or .
- uplo
- Type: System..::..StringOn entry: if , the upper triangle of is stored.If , the lower triangle of is stored.Constraint: or .
- n
- Type: System..::..Int32On entry: , the number of linear equations, i.e., the order of the matrix .Constraint: .
- nrhs
- Type: System..::..Int32On entry: , the number of right-hand sides, i.e., the number of columns of the matrix .Constraint: .
- a
- Type: array<NagLibrary..::..Complex,2>[,](,)[,][,]An array of size [dim1, dim2]Note: dim1 must satisfy the constraint:Note: the second dimension of the array a must be at least .On entry: the by Hermitian matrix .
- If , the upper triangular part of must be stored and the elements of the array below the diagonal are not referenced.
- If , the lower triangular part of must be stored and the elements of the array above the diagonal are not referenced.
- af
- Type: array<NagLibrary..::..Complex,2>[,](,)[,][,]An array of size [dim1, dim2]Note: dim1 must satisfy the constraint:Note: the second dimension of the array af must be at least .
- equed
- Type: System..::..String%On entry: if or , equed need not be set.If , equed must specify the form of the equilibration that was performed as follows:
- if , no equilibration;
- if , equilibration was performed, i.e., has been replaced by .
On exit: if , equed is unchanged from entry.Otherwise, if no constraints are violated, equed specifies the form of the equilibration that was performed as specified above.Constraint: if , or .
- s
- Type: array<System..::..Double>[]()[][]An array of size [dim1]Note: the dimension of the array s must be at least .On entry: if or , s need not be set.
- b
- Type: array<NagLibrary..::..Complex,2>[,](,)[,][,]An array of size [dim1, dim2]Note: dim1 must satisfy the constraint:Note: the second dimension of the array b must be at least .On entry: the by right-hand side matrix .
- x
- Type: array<NagLibrary..::..Complex,2>[,](,)[,][,]An array of size [dim1, dim2]Note: dim1 must satisfy the constraint:Note: the second dimension of the array x must be at least .On exit: if or , the by solution matrix to the original system of equations. Note that the arrays and are modified on exit if , and the solution to the equilibrated system is .
- rcond
- Type: System..::..Double%On exit: if no constraints are violated, an estimate of the reciprocal condition number of the matrix (after equilibration if that is performed), computed as .
- ferr
- Type: array<System..::..Double>[]()[][]An array of size [nrhs]On exit: if or , 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 x and is the corresponding column of the exact solution . The estimate is as reliable as the estimate for rcond, and is almost always a slight overestimate of the true error.
- berr
- Type: array<System..::..Double>[]()[][]An array of size [nrhs]On exit: if or , 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).
- info
- Type: System..::..Int32%On exit: unless the method detects an error (see [Error Indicators and Warnings]).
Description
f07fp performs the following steps:
1. | If , real diagonal scaling factors, , are computed to equilibrate the system:
|
||
2. | If or , the Cholesky decomposition is used to factor the matrix (after equilibration if ) as if or if , where is an upper triangular matrix and is a lower triangular matrix. | ||
3. | If the leading by principal minor of is not positive definite, then the method 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, is returned as a warning, but the method still goes on to solve for and compute error bounds as described below. | ||
4. | The system of equations is solved for using the factored form of . | ||
5. | Iterative refinement is applied to improve the computed solution matrix and to calculate error bounds and backward error estimates for it. | ||
6. | If equilibration was used, the matrix is premultiplied by so that it solves the original system before equilibration. |
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 http://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
Error Indicators and Warnings
Some error messages may refer to parameters that are dropped from this interface
(LDA, LDAF, LDB, LDX) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
- If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
-
The leading minor of order of is not positive definite, so the factorization could not be completed, and the solution has not been computed. is returned.
-
(or ) is nonsingular, but rcond 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 rcond would suggest.
Accuracy
For each right-hand side vector , the computed solution is the exact solution of a perturbed system of equations , where
- if , ;
- if , ,
If is the true solution, then the computed solution satisfies a forward error bound of the form
where
.
If is the th column of , then is returned in and a bound on is returned in . See Section 4.4 of Anderson et al. (1999) for further details.
Parallelism and Performance
None.
Further Comments
The factorization of requires approximately floating-point operations.
For each right-hand side, computation of the backward error involves a minimum of floating-point operations. Each step of iterative refinement involves an additional operations. At most five steps of iterative refinement are performed, but usually only one or two steps are required. Estimating the forward error involves solving a number of systems of equations of the form ; the number is usually or and never more than . Each solution involves approximately operations.
The real analogue of this method is f07fb.
Example
This example solves the equations
where is the Hermitian positive definite matrix
and
Error estimates for the solutions, information on equilibration and an estimate of the reciprocal of the condition number of the scaled matrix are also output.
Example program (C#): f07fpe.cs