PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_linsys_withdraw_complex_norm_rcomm (f04zc)
Purpose
nag_linsys_complex_norm_rcomm (f04zc) estimates the -norm of a complex matrix without accessing the matrix explicitly. It uses reverse communication for evaluating matrix-vector products. The function may be used for estimating matrix condition numbers.
Note: this function is scheduled to be withdrawn, please see
f04zc in
Advice on Replacement Calls for Withdrawn/Superseded Routines..
Syntax
Description
nag_linsys_complex_norm_rcomm (f04zc) computes an estimate (a lower bound) for the
-norm
of an
by
complex matrix
. The function regards the matrix
as being defined by a user-supplied ‘Black Box’ which, given an input vector
, can return either of the matrix-vector products
or
, where
is the complex conjugate transpose. A reverse communication interface is used; thus control is returned to the calling program whenever a matrix-vector product is required.
Note: this function is
not
recommended for use when the elements of
are known explicitly; it is then more efficient to compute the
-norm directly from the formula
(1) above.
The main
use of the function is for estimating , and hence the condition number
, without forming explicitly ( above).
If, for example, an factorization of is available, the matrix-vector products and required by nag_linsys_complex_norm_rcomm (f04zc) may be computed by back- and forward-substitutions, without computing .
The function can also be used to estimate
-norms of matrix products such as
and
, without forming the products explicitly. Further applications are described in
Higham (1988).
Since , nag_linsys_complex_norm_rcomm (f04zc) can be used to estimate the -norm of by working with instead of .
The algorithm used is based on a method given in
Hager (1984) and is described in
Higham (1988). A comparison of several techniques for condition number estimation is given in
Higham (1987).
Note: nag_linsys_complex_gen_norm_rcomm (f04zd) can also be used to estimate the norm of a real matrix.
nag_linsys_complex_gen_norm_rcomm (f04zd) uses a more recent algorithm than
nag_linsys_complex_norm_rcomm (f04zc) and it is recommended that
nag_linsys_complex_gen_norm_rcomm (f04zd) be used in place of
nag_linsys_complex_norm_rcomm (f04zc).
References
Hager W W (1984) Condition estimates SIAM J. Sci. Statist. Comput. 5 311–316
Higham N J (1987) A survey of condition number estimation for triangular matrices SIAM Rev. 29 575–596
Higham N J (1988) FORTRAN codes for estimating the one-norm of a real or complex matrix, with applications to condition estimation ACM Trans. Math. Software 14 381–396
Parameters
Note: this function uses
reverse communication. Its use involves an initial entry, intermediate exits and re-entries, and a final exit, as indicated by the
argument icase. Between intermediate exits and re-entries,
all arguments other than x must remain unchanged.
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
On initial entry: must be set to .
- 2:
– complex array
-
On initial entry: need not be set.
On intermediate re-entry: must contain (if ) or (if ).
- 3:
– double scalar
-
On initial entry: need not be set.
- 4:
– complex array
-
On initial entry: need not be set.
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
x,
work. (An error is raised if these dimensions are not equal.)
On initial entry: , the order of the matrix .
Constraint:
.
Output Parameters
- 1:
– int64int32nag_int scalar
-
On intermediate exit:
or
, and
, for
, contain the elements of a vector
. The calling program must
(a) |
evaluate (if ) or (if ), where is the complex conjugate transpose; |
(b) |
place the result in x; and, |
(c) |
call nag_linsys_complex_norm_rcomm (f04zc) once again, with all the other arguments unchanged. |
On final exit: .
- 2:
– complex array
-
On intermediate exit:
contains the current vector .
On final exit: the array is undefined.
- 3:
– double scalar
-
On intermediate exit:
should not be changed.
On final exit: an estimate (a lower bound) for .
- 4:
– complex array
-
On final exit: contains a vector
such that
where
(
is not returned). If
and
estnrm is large, then
is an approximate null vector for
.
- 5:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
In extensive tests on
random matrices of size up to
the estimate
estnrm has been found always to be within a factor eleven of
; often the estimate has many correct figures. However, matrices exist for which the estimate is smaller than
by an arbitrary factor; such matrices are very unlikely to arise in practice. See
Higham (1988) for further details.
Further Comments
Timing
The total time taken by nag_linsys_complex_norm_rcomm (f04zc) is proportional to . For most problems the time taken during calls to nag_linsys_complex_norm_rcomm (f04zc) will be negligible compared with the time spent evaluating matrix-vector products between calls to nag_linsys_complex_norm_rcomm (f04zc).
The number of matrix-vector products required varies from to (or is if ). In most cases products are required; it is rare for more than to be needed.
Overflow
It is your responsibility to guard against potential overflows during evaluation of the matrix-vector products. In particular, when estimating using a triangular factorization of , nag_linsys_complex_norm_rcomm (f04zc) should not be called if one of the factors is exactly singular – otherwise division by zero may occur in the substitutions.
Use in Conjunction with NAG Library Routines
To estimate the
-norm of the inverse of a matrix
, the following skeleton code can normally be used:
... code to factorize A ...
if (A is not singular)
icase = 0
[icase, x, estnrm, work, ifail] = f04zc(icase, x, estnrm, work);
while (icase ~= 0)
if (icase == 1)
... code to compute A(-1)x ...
else
... code to compute (A(-1)(H)) x ...
end
[icase, x, estnrm, work, ifail] = f04zc(icase, x, estnrm, work);
end
end
To compute or , solve the equation or for , overwriting on . The code will vary, depending on the type of the matrix , and the NAG function used to factorize .
Note that if
is any type of
Hermitian matrix, then
, and the
if statement after the
while
can be reduced to:
... code to compute A(-1)x ...
The example program in
Example illustrates how
nag_linsys_complex_norm_rcomm (f04zc) can be used in conjunction with NAG Toolbox functions for complex band matrices (factorized by
nag_lapack_zgbtrf (f07br)).
It is also straightforward to use
nag_linsys_complex_norm_rcomm (f04zc) for Hermitian positive definite matrices, using
nag_lapack_zpotrf (f07fr) and
nag_lapack_zpotrs (f07fs) for factorization and solution.
Example
This example estimates the condition number
of the order
matrix
where
is a band matrix stored in the packed format required by
nag_lapack_zgbtrf (f07br) and
nag_lapack_zgbtrs (f07bs).
Further examples of the technique for condition number estimation in the case of double matrices can be seen in the example program section of
nag_linsys_real_norm_rcomm (f04yc).
Open in the MATLAB editor:
f04zc_example
function f04zc_example
fprintf('f04zc example results\n\n');
a = [ 1.0 + 1.0i, 2.0 + 1.0i, 1.0 + 2.0i, 0.0 + 0.0i, 0.0 + 0.0i;
0.0 + 2.0i, 3.0 + 5.0i, 1.0 + 3.0i, 2.0 + 1.0i, 0.0 + 0.0i,
0.0 + 0.0i, -2.0 + 6.0i, 5.0 + 7.0i, 0.0 + 6.0i, 1.0 - 1.0i;
0.0 + 0.0i, 0.0 + 0.0i, 3.0 + 9.0i, 0.0 + 4.0i, 4.0 - 3.0i;
0.0 + 0.0i, 0.0 + 0.0i, 0.0 + 0.0i, -1.0 + 8.0i, 10.0 - 3.0i];
x = complex(zeros(5, 1));
work = complex(zeros(5,1));
anorm = norm(a,1);
icase = int64(0);
estnrm = 0;
done = false;
while (~done)
[icase, x, estnrm, work, ifail] = ...
f04zc(icase, x, estnrm, work);
if (icase == 0)
done = true;
elseif (icase == 1)
x = inv(a)*x;
else
x = conj(transpose(inv(a)))*x;
end
end
fprintf('Computed norm of a = %6.4g\n', anorm);
fprintf('Estimated norm of inverse(A) = %6.4g\n', estnrm);
fprintf('Estimated condition number of A = %6.1f\n', estnrm*anorm);
f04zc example results
Computed norm of a = 23.49
Estimated norm of inverse(A) = 37.04
Estimated condition number of A = 870.0
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015