NAG Library Routine Document
F01KAF
1 Purpose
F01KAF computes an estimate of the absolute condition number of a matrix function at a complex by matrix in the -norm, where is either the exponential, logarithm, sine, cosine, hyperbolic sine (sinh) or hyperbolic cosine (cosh). The evaluation of the matrix function, , is also returned.
2 Specification
INTEGER |
N, LDA, IFAIL |
REAL (KIND=nag_wp) |
CONDA, NORMA, NORMFA |
COMPLEX (KIND=nag_wp) |
A(LDA,*) |
CHARACTER(*) |
FUN |
|
3 Description
The absolute condition number of
at
,
is given by the norm of the Fréchet derivative of
,
, which is defined by
The Fréchet derivative in the direction
,
is linear in
and can therefore be written as
where the
operator stacks the columns of a matrix into one vector, so that
is
. F01KAF computes an estimate
such that
, where
.
The relative condition number can then be computed via
The algorithm used to find
is detailed in Section 3.4 of
Higham (2008).
4 References
Higham N J (2008) Functions of Matrices: Theory and Computation SIAM, Philadelphia, PA, USA
5 Parameters
- 1: FUN – CHARACTER(*)Input
On entry: indicates which matrix function will be used.
- The matrix exponential, , will be used.
- The matrix sine, , will be used.
- The matrix cosine, , will be used.
- The hyperbolic matrix sine, , will be used.
- The hyperbolic matrix cosine, , will be used.
- The matrix logarithm, , will be used.
Constraint:
, , , , or .
- 2: N – INTEGERInput
On entry: , the order of the matrix .
Constraint:
.
- 3: A(LDA,) – COMPLEX (KIND=nag_wp) arrayInput/Output
-
Note: the second dimension of the array
A
must be at least
.
On entry: the by matrix .
On exit: the by matrix, .
- 4: LDA – INTEGERInput
On entry: the first dimension of the array
A as declared in the (sub)program from which F01KAF is called.
Constraint:
.
- 5: CONDA – REAL (KIND=nag_wp)Output
On exit: an estimate of the absolute condition number of at .
- 6: NORMA – REAL (KIND=nag_wp)Output
On exit: the -norm of .
- 7: NORMFA – REAL (KIND=nag_wp)Output
On exit: the -norm of .
- 8: 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:
-
An internal error occurred when estimating the norm of the Fréchet derivative of
at
. Please contact
NAG.
-
An internal error occurred when evaluating the matrix function
. You can investigate further by calling
F01FCF,
F01FJF or
F01FKF with the matrix
.
-
On entry, , , , , or .
Input argument number is invalid.
-
On entry, .
Input argument number is invalid.
-
On entry, parameter
LDA is invalid.
Constraint:
.
-
Allocation of memory failed.
7 Accuracy
F01KAF uses the norm estimation routine
F04ZDF to estimate a quantity
, where
and
. For further details on the accuracy of norm estimation, see the documentation for
F04ZDF.
Approximately
of complex allocatable memory is required by the routine, in addition to the memory used by the underlying matrix function routines
F01FCF,
F01FJF or
F01FKF.
F01KAF returns the matrix function
. This is computed using
F01FCF if
,
F01FJF if
and
F01FKF otherwise. If only
is required, without an estimate of the condition number, then it is far more efficient to use
F01FCF,
F01FJF or
F01FKF directly.
F01JAF can be used to find the condition number of the exponential, logarithm, sine, cosine, sinh or cosh at a real matrix.
9 Example
This example estimates the absolute and relative condition numbers of the matrix sinh function for
9.1 Program Text
Program Text (f01kafe.f90)
9.2 Program Data
Program Data (f01kafe.d)
9.3 Program Results
Program Results (f01kafe.r)