g02ab computes the nearest correlation matrix, in the Frobenius norm or weighted Frobenius norm, and optionally with bounds on the eigenvalues, to a given square, input matrix.
Syntax
C# |
---|
public static void g02ab( double[,] g, int n, string opt, double alpha, double[] w, 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 g02ab ( _ g As Double(,), _ n As Integer, _ opt As String, _ alpha As Double, _ w As Double(), _ 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 g02ab( array<double,2>^ g, int n, String^ opt, double alpha, array<double>^ w, 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 g02ab : g : float[,] * n : int * opt : string * alpha : float * w : float[] * 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: is overwritten.
- n
- Type: System..::..Int32On entry: the order of the matrix .Constraint: .
- opt
- Type: System..::..StringOn entry: indicates the problem to be solved.
- The lower bound problem is solved.
- The weighted norm problem is solved.
- Both problems are solved.
Constraint: , or .
- alpha
- Type: System..::..DoubleOn entry: the value of .If , alpha need not be set.Constraint: .
- w
- Type: array<System..::..Double>[]()[][]An array of size [n]On entry: the square roots of the diagonal elements of , that is the diagonal of .If , w need not be set.On exit: if or , the array is scaled so , for .Constraint: , for .
- errtol
- Type: System..::..DoubleOn entry: the termination tolerance for the Newton iteration. If then is used.
- maxits
- Type: System..::..Int32On entry: specifies the maximum number of iterations to be used by the iterative scheme 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
Finds the nearest correlation matrix by minimizing where is an approximate correlation matrix.
The norm can either be the Frobenius norm or the weighted Frobenius norm .
You can optionally specify a lower bound on the eigenvalues, , of the computed correlation matrix, forcing the matrix to be positive definite, .
Note that if the weights vary by several orders of magnitude from one another the algorithm may fail to converge.
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.
Accuracy
The returned accuracy is controlled by errtol and limited by machine precision.
Parallelism and Performance
None.
Further Comments
Example
This example finds the nearest correlation matrix to:
weighted by with minimum eigenvalue .
Example program (C#): g02abe.cs