g02aa computes the nearest correlation matrix, in the Frobenius norm, to a given square, input matrix.
Syntax
C# |
---|
public static void g02aa( double[,] g, int n, double errtol, int maxits, int maxit, double[,] x, out int iter, out int feval, out double nrmgrd, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g02aa ( _ g As Double(,), _ n As Integer, _ errtol As Double, _ maxits As Integer, _ maxit As Integer, _ x As Double(,), _ <OutAttribute> ByRef iter As Integer, _ <OutAttribute> ByRef feval As Integer, _ <OutAttribute> ByRef nrmgrd As Double, _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g02aa( array<double,2>^ g, int n, double errtol, int maxits, int maxit, array<double,2>^ x, [OutAttribute] int% iter, [OutAttribute] int% feval, [OutAttribute] double% nrmgrd, [OutAttribute] int% ifail ) |
F# |
---|
static member g02aa : g : float[,] * n : int * errtol : float * maxits : int * maxit : int * x : float[,] * iter : int byref * feval : int byref * nrmgrd : float byref * ifail : int byref -> unit |
Parameters
- g
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, n]Note: dim1 must satisfy the constraint:On entry: , the initial matrix.On exit: a symmetric matrix with the diagonal set to .
- n
- Type: System..::..Int32On entry: the size of the matrix .Constraint: .
- errtol
- Type: System..::..DoubleOn entry: the termination tolerance for the Newton iteration. If then is used.
- maxits
- Type: System..::..Int32On entry: maxits specifies the maximum number of iterations used for the iterative scheme used to solve the linear algebraic equations at each Newton step.If , is used.
- maxit
- Type: System..::..Int32On entry: specifies the maximum number of Newton iterations.If , is used.
- x
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, n]Note: dim1 must satisfy the constraint:On exit: contains the nearest correlation matrix.
- iter
- Type: System..::..Int32%On exit: the number of Newton steps taken.
- feval
- Type: System..::..Int32%On exit: the number of function evaluations of the dual problem.
- nrmgrd
- Type: System..::..Double%On exit: the norm of the gradient of the last Newton step.
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
A correlation matrix may be characterised as a real square matrix that is symmetric, has a unit diagonal and is positive semidefinite.
g02aa applies an inexact Newton method to a dual formulation of the problem, as described by Qi and Sun (2006). It applies the improvements suggested by Borsdorf and Higham (2010).
References
Borsdorf R and Higham N J (2010) A preconditioned (Newton) algorithm for the nearest correlation matrix IMA Journal of Numerical Analysis 30(1) 94–107
Qi H and Sun D (2006) A quadratically convergent Newton method for computing the nearest correlation matrix SIAM J. Matrix AnalAppl 29(2) 360–385
Error Indicators and Warnings
Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface
(LDG, LDX) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
-
On entry, and .
Constraint: .On entry, and .
Constraint: .On entry, .
Constraint: .
-
Newton iteration fails to converge in iterations.
-
Machine precision is limiting convergence.
The array returned in x may still be of interest.
-
An intermediate eigenproblem could not be solved. This should not occur. Please contact NAG with details of your call.
-
Dynamic memory allocation failed.
Accuracy
The returned accuracy is controlled by errtol and limited by machine precision.
Parallelism and Performance
None.
Further Comments
Arrays are internally allocated by g02aa. The total size of these arrays is real elements and integer elements.
Example
This example finds the nearest correlation matrix to:
Example program (C#): g02aae.cs