NAG Library Routine Document
G02AEF
1 Purpose
G02AEF computes the factor loading matrix associated with the nearest correlation matrix with -factor structure, in the Frobenius norm, to a given square, input matrix.
2 Specification
SUBROUTINE G02AEF ( |
G, LDG, N, K, ERRTOL, MAXIT, X, LDX, ITER, FEVAL, NRMPGD, IFAIL) |
INTEGER |
LDG, N, K, MAXIT, LDX, ITER, FEVAL, IFAIL |
REAL (KIND=nag_wp) |
G(LDG,N), ERRTOL, X(LDX,K), NRMPGD |
|
3 Description
A correlation matrix with -factor structure may be characterised as a real square matrix that is symmetric, has a unit diagonal, is positive semidefinite and can be written as , where is the identity matrix and has rows and columns. is often referred to as the factor loading matrix.
G02AEF applies a spectral projected gradient method to the modified problem such that , for , where is the th row of the factor loading matrix, , which gives us the solution.
4 References
Birgin E G, Martínez J M and Raydan M (2001) Algorithm 813: SPG–software for convex-constrained optimization ACM Trans. Math. Software 27 340–349
Borsdorf R, Higham N J and Raydan M (2010) Computing a nearest correlation matrix with factor structure. SIAM J. Matrix Anal. Appl. 31(5) 2603–2622
5 Parameters
- 1: G(LDG,N) – REAL (KIND=nag_wp) arrayInput/Output
On entry: , the initial matrix.
On exit: a symmetric matrix with the diagonal elements set to unity.
- 2: LDG – INTEGERInput
On entry: the first dimension of the array
G as declared in the (sub)program from which G02AEF is called.
Constraint:
.
- 3: N – INTEGERInput
On entry: , the order of the matrix .
Constraint:
.
- 4: K – INTEGERInput
On entry: , the number of factors and columns of .
Constraint:
.
- 5: ERRTOL – REAL (KIND=nag_wp)Input
On entry: the termination tolerance for the projected gradient norm. See references for further details. If then is used. This is often a suitable default value.
- 6: MAXIT – INTEGERInput
On entry: specifies the maximum number of iterations in the spectral projected gradient method.
If , is used.
- 7: X(LDX,K) – REAL (KIND=nag_wp) arrayOutput
On exit: contains the matrix .
- 8: LDX – INTEGERInput
On entry: the first dimension of the array
X as declared in the (sub)program from which G02AEF is called.
Constraint:
.
- 9: ITER – INTEGEROutput
On exit: the number of steps taken in the spectral projected gradient method.
- 10: FEVAL – INTEGEROutput
On exit: the number of evaluations .
- 11: NRMPGD – REAL (KIND=nag_wp)Output
On exit: the norm of the projected gradient at the final iteration.
- 12: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
On entry, | , |
or | , |
or | . |
or | , |
or | , |
The routine fails to converge in
MAXIT iterations. Increase
MAXIT or check the call to the routine.
-
Internal memory allocation failed.
7 Accuracy
The returned accuracy is controlled by
ERRTOL and limited by
machine precision.
Arrays are internally allocated by G02AEF. The total size of these arrays is
real elements and
integer elements.
Here
is the block size required for optimal performance by
F08FEF (DSYTRD) and
F08FGF (DORMTR) which are called internally. All allocated memory is freed before return of G02AEF.
See
G03CAF for constructing the factor loading matrix from a known correlation matrix.
9 Example
This example finds the nearest correlation matrix with
factor structure to:
9.1 Program Text
Program Text (g02aefe.f90)
9.2 Program Data
Program Data (g02aefe.d)
9.3 Program Results
Program Results (g02aefe.r)