NAG Library Routine Document
g02apf (corrmat_target)
1
Purpose
g02apf computes a correlation matrix, by using a positive definite target matrix derived from weighting the approximate input matrix, with an optional bound on the minimum eigenvalue.
2
Specification
Fortran Interface
Subroutine g02apf ( |
g, ldg, n, theta, h, ldh, errtol, eigtol, x, ldx, alpha, iter, eigmin, norm, ifail) |
Integer, Intent (In) | :: | ldg, n, ldh, ldx | Integer, Intent (Inout) | :: | ifail | Integer, Intent (Out) | :: | iter | Real (Kind=nag_wp), Intent (In) | :: | theta, errtol, eigtol | Real (Kind=nag_wp), Intent (Inout) | :: | g(ldg,n), h(ldh,n), x(ldx,n) | Real (Kind=nag_wp), Intent (Out) | :: | alpha, eigmin, norm |
|
C Header Interface
#include <nagmk26.h>
void |
g02apf_ (double g[], const Integer *ldg, const Integer *n, const double *theta, double h[], const Integer *ldh, const double *errtol, const double *eigtol, double x[], const Integer *ldx, double *alpha, Integer *iter, double *eigmin, double *norm, Integer *ifail) |
|
3
Description
Starting from an approximate correlation matrix,
,
g02apf finds a correlation matrix,
, which has the form
where
and
is a target matrix.
denotes the matrix
with elements
.
is a matrix of weights that defines the target matrix. The target matrix must be positive definite and thus have off-diagonal elements less than
in magnitude. A value of
in
essentially fixes an element in
so it is unchanged in
.
g02apf utilizes a shrinking method to find the minimum value of such that is positive definite with unit diagonal and with a smallest eigenvalue of at least times the smallest eigenvalue of the target matrix.
4
References
Higham N J, Strabić N and Šego V (2014) Restoring definiteness via shrinking, with an application to correlation matrices with a fixed block MIMS EPrint 2014.54 Manchester Institute for Mathematical Sciences, The University of Manchester, UK
5
Arguments
- 1: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: , the initial matrix.
On exit: a symmetric matrix with the diagonal elements set to .
- 2: – IntegerInput
-
On entry: the first dimension of the array
g as declared in the (sub)program from which
g02apf is called.
Constraint:
.
- 3: – IntegerInput
-
On entry: the order of the matrix .
Constraint:
.
- 4: – Real (Kind=nag_wp)Input
-
On entry: the value of . If , is used.
Constraint:
.
- 5: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: the matrix of weights .
On exit: a symmetric matrix with its diagonal elements set to .
- 6: – IntegerInput
-
On entry: the first dimension of the array
h as declared in the (sub)program from which
g02apf is called.
Constraint:
.
- 7: – Real (Kind=nag_wp)Input
-
On entry: the termination tolerance for the iteration.
If
,
is used. See
Section 7 for further details.
- 8: – Real (Kind=nag_wp)Input
-
On entry: the tolerance used in determining the definiteness of the target matrix
.
If , where and denote the minimum and maximum eigenvalues of respectively, is positive definite.
If , machine precision is used.
- 9: – Real (Kind=nag_wp) arrayOutput
-
On exit: contains the matrix .
- 10: – IntegerInput
-
On entry: the first dimension of the array
x as declared in the (sub)program from which
g02apf is called.
Constraint:
.
- 11: – Real (Kind=nag_wp)Output
-
On exit: the constant used in the formation of .
- 12: – IntegerOutput
-
On exit: the number of iterations taken.
- 13: – Real (Kind=nag_wp)Output
-
On exit: the smallest eigenvalue of the target matrix .
- 14: – Real (Kind=nag_wp)Output
-
On exit: the value of after the final iteration.
- 15: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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, .
Constraint: .
-
On entry, and .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, and .
Constraint: .
-
On entry, and .
Constraint: .
-
The target matrix is not positive definite.
-
Failure to solve intermediate eigenproblem. This should not occur. Please contact
NAG.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
The algorithm uses a bisection method. It is terminated when the computed
is within
errtol of the minimum value.
Note: when
is zero
is still positive definite, in that it can be successfully factorized with a call to
f07fdf (dpotrf).
The number of iterations taken for the bisection will be:
8
Parallelism and Performance
g02apf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g02apf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
Arrays are internally allocated by g02apf. The total size of these arrays does not exceed real elements. All allocated memory is freed before return of g02apf.
10
Example
This example finds the smallest
such that
is a correlation matrix. The
by
leading principal submatrix of the input is preserved, and the last
by
diagonal block is weighted to give some emphasis to the off diagonal elements.
and
10.1
Program Text
Program Text (g02apfe.f90)
10.2
Program Data
Program Data (g02apfe.d)
10.3
Program Results
Program Results (g02apfe.r)