NAG Library Routine Document
f01jcf
(real_gen_matrix_cond_usd)
1
Purpose
f01jcf computes an estimate of the absolute condition number of a matrix function at a real by matrix in the -norm, using analytical derivatives of you have supplied.
2
Specification
Fortran Interface
Subroutine f01jcf ( |
n,
a,
lda,
f,
iuser,
ruser,
iflag,
conda,
norma,
normfa,
ifail) |
Integer, Intent (In) | :: |
n,
lda | Integer, Intent (Inout) | :: |
iuser(*),
ifail | Integer, Intent (Out) | :: |
iflag | Real (Kind=nag_wp), Intent (Inout) | :: |
a(lda,*),
ruser(*) | Real (Kind=nag_wp), Intent (Out) | :: |
conda,
norma,
normfa | External | :: |
f |
|
C Header Interface
#include nagmk26.h
void |
f01jcf_ (
const Integer *n,
double a[],
const Integer *lda,
void (NAG_CALL *f)(
const Integer *m,
Integer *iflag,
const Integer *nz,
const Complex z[],
Complex fz[],
Integer iuser[],
double ruser[]),
Integer iuser[],
double ruser[],
Integer *iflag,
double *conda,
double *norma,
double *normfa,
Integer *ifail) |
|
3
Description
The absolute condition number of
at
,
is given by the norm of the Fréchet derivative of
,
, which is defined by
where
is 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
.
f01jcf 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).
The function
, and the derivatives of
, are returned by subroutine
f which, given an integer
, evaluates
at a number of (generally complex) points
, for
. For any
on the real line,
must also be real.
f01jcf is therefore appropriate for routines that can be evaluated on the complex plane and whose derivatives, of arbitrary order, can also be evaluated on the complex plane.
4
References
Higham N J (2008) Functions of Matrices: Theory and Computation SIAM, Philadelphia, PA, USA
5
Arguments
- 1: – IntegerInput
-
On entry: , the order of the matrix .
Constraint:
.
- 2: – Real (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, .
- 3: – IntegerInput
-
On entry: the first dimension of the array
a as declared in the (sub)program from which
f01jcf is called.
Constraint:
.
- 4: – Subroutine, supplied by the user.External Procedure
-
Given an integer
, the subroutine
f evaluates
at a number of points
.
The specification of
f is:
Fortran Interface
Integer, Intent (In) | :: |
m,
nz | Integer, Intent (Inout) | :: |
iflag,
iuser(*) | Real (Kind=nag_wp), Intent (Inout) | :: |
ruser(*) | Complex (Kind=nag_wp), Intent (In) | :: |
z(nz) | Complex (Kind=nag_wp), Intent (Out) | :: |
fz(nz) |
|
C Header Interface
#include nagmk26.h
void |
f (
const Integer *m,
Integer *iflag,
const Integer *nz,
const Complex z[],
Complex fz[],
Integer iuser[],
double ruser[]) |
|
- 1: – IntegerInput
-
On entry: the order,
, of the derivative required.
If , should be returned. For , should be returned.
- 2: – IntegerInput/Output
-
On entry:
iflag will be zero.
On exit:
iflag should either be unchanged from its entry value of zero, or may be set nonzero to indicate that there is a problem in evaluating the function
; for instance
may not be defined. If
iflag is returned as nonzero then
f01jcf will terminate the computation, with
.
- 3: – IntegerInput
-
On entry: , the number of function or derivative values required.
- 4: – Complex (Kind=nag_wp) arrayInput
-
On entry: the points at which the function is to be evaluated.
- 5: – Complex (Kind=nag_wp) arrayOutput
-
On exit: the function or derivative values.
should return the value , for . If lies on the real line, then so must .
- 6: – Integer arrayUser Workspace
- 7: – Real (Kind=nag_wp) arrayUser Workspace
-
f is called with the arguments
iuser and
ruser as supplied to
f01jcf. You should use the arrays
iuser and
ruser to supply information to
f.
f must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
f01jcf is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: f should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
f01jcf. If your code inadvertently
does return any NaNs or infinities,
f01jcf is likely to produce unexpected results.
- 5: – Integer arrayUser Workspace
- 6: – Real (Kind=nag_wp) arrayUser Workspace
-
iuser and
ruser are not used by
f01jcf, but are passed directly to
f and may be used to pass information to this routine.
- 7: – IntegerOutput
-
On exit:
, unless
iflag has been set nonzero inside
f, in which case
iflag will be the value set and
ifail will be set to
.
- 8: – Real (Kind=nag_wp)Output
-
On exit: an estimate of the absolute condition number of at .
- 9: – Real (Kind=nag_wp)Output
-
On exit: the -norm of .
- 10: – Real (Kind=nag_wp)Output
-
On exit: the -norm of .
- 11: – 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:
-
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
f01emf with the matrix
and the function
.
-
iflag has been set nonzero by the user-supplied subroutine.
-
On entry, .
Input argument number is invalid.
-
On entry, argument
lda is invalid.
Constraint:
.
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
f01jcf uses the norm estimation routine
f04ydf to estimate a quantity
, where
and
. For further details on the accuracy of norm estimation, see the documentation for
f04ydf.
8
Parallelism and Performance
f01jcf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library. In these implementations, this routine may make calls to the user-supplied functions from within an OpenMP parallel region. Thus OpenMP directives within the user functions can only be used if you are compiling the user-supplied function and linking the executable in accordance with the instructions in the
Users' Note for your implementation. The user workspace arrays
iuser and
ruser are classified as OpenMP shared memory and use of
iuser and
ruser has to take account of this in order to preserve thread safety whenever information is written back to either of these arrays. If at all possible, it is recommended that these arrays are only used to supply read-only data to the user functions when a multithreaded implementation is being used.
f01jcf 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.
The matrix function is computed using the underlying matrix function routine
f01emf. Approximately
of real allocatable memory is required by the routine, in addition to the memory used by the underlying matrix function routine.
If only is required, without an estimate of the condition number, then it is far more efficient to use the underlying matrix function routine directly.
The complex analogue of this routine is
f01kcf.
10
Example
This example estimates the absolute and relative condition numbers of the matrix function
where
10.1
Program Text
Program Text (f01jcfe.f90)
10.2
Program Data
Program Data (f01jcfe.d)
10.3
Program Results
Program Results (f01jcfe.r)