F04YCF (PDF version)
F04 Chapter Contents
F04 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F04YCF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

F04YCF estimates the 1-norm of a real matrix without accessing the matrix explicitly. It uses reverse communication for evaluating matrix-vector products. The routine may be used for estimating matrix condition numbers.

2  Specification

SUBROUTINE F04YCF ( ICASE, N, X, ESTNRM, WORK, IWORK, IFAIL)
INTEGER  ICASE, N, IWORK(N), IFAIL
REAL (KIND=nag_wp)  X(N), ESTNRM, WORK(N)

3  Description

F04YCF computes an estimate (a lower bound) for the 1-norm
A1 = max 1jn i=1n aij (1)
of an n by n real matrix A=aij. The routine regards the matrix A as being defined by a user-supplied ‘Black Box’ which, given an input vector x, can return either of the matrix-vector products Ax or ATx. A reverse communication interface is used; thus control is returned to the calling program whenever a matrix-vector product is required.
Note:  this routine is not recommended for use when the elements of A are known explicitly; it is then more efficient to compute the 1-norm directly from formula (1) above.
The main use of the routine is for estimating B-11, and hence the condition number κ1B=B1B-11, without forming B-1 explicitly (A=B-1 above).
If, for example, an LU factorization of B is available, the matrix-vector products B-1x and B-Tx required by F04YCF may be computed by back- and forward-substitutions, without computing B-1.
The routine can also be used to estimate 1-norms of matrix products such as A-1B and ABC, without forming the products explicitly. Further applications are described by Higham (1988).
Since A=AT1, F04YCF can be used to estimate the -norm of A by working with AT instead of A.
The algorithm used is based on a method given by Hager (1984) and is described by Higham (1988). A comparison of several techniques for condition number estimation is given by Higham (1987).
Note: F04YDF can also be used to estimate the norm of a real matrix. F04YDF uses a more recent algorithm than F04YCF and it is recommended that F04YDF be used in place of F04YCF.

4  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

5  Parameters

Note: this routine uses reverse communication. Its use involves an initial entry, intermediate exits and re-entries, and a final exit, as indicated by the parameter ICASE. Between intermediate exits and re-entries, all parameters other than X must remain unchanged.
1:     ICASE – INTEGERInput/Output
On initial entry: must be set to 0.
On intermediate exit: ICASE=1 or 2, and Xi, for i=1,2,,n, contain the elements of a vector x. The calling program must
(a) evaluate Ax (if ICASE=1) or ATx (if ICASE=2),
(b) place the result in X, and
(c) call F04YCF once again, with all the other parameters unchanged.
On final exit: ICASE=0.
2:     N – INTEGERInput
On initial entry: n, the order of the matrix A.
Constraint: N1.
3:     XN – REAL (KIND=nag_wp) arrayInput/Output
On initial entry: need not be set.
On intermediate exit: contains the current vector x.
On intermediate re-entry: must contain Ax (if ICASE=1) or ATx (if ICASE=2).
On final exit: the array is undefined.
4:     ESTNRM – REAL (KIND=nag_wp)Input/Output
On initial entry: need not be set.
On intermediate exit: should not be changed.
On final exit: an estimate (a lower bound) for A1.
5:     WORKN – REAL (KIND=nag_wp) arrayInput/Output
On initial entry: need not be set.
On final exit: contains a vector v such that v=Aw where ESTNRM=v1/w1 (w is not returned). If A=B-1 and ESTNRM is large, then v is an approximate null vector for B.
6:     IWORKN – INTEGER arrayCommunication Array
7:     IFAIL – INTEGERInput/Output
On initial entry: IFAIL must be set to 0, -1​ or ​1. 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 -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, because for this routine the values of the output parameters may be useful even if IFAIL0 on exit, the recommended value is -1. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On final exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry, N<1.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction for further information.

7  Accuracy

In extensive tests on random matrices of size up to n=100 the estimate ESTNRM has been found always to be within a factor eleven of A1; often the estimate has many correct figures. However, matrices exist for which the estimate is smaller than A1 by an arbitrary factor; such matrices are very unlikely to arise in practice. See Higham (1988) for further details.

8  Parallelism and Performance

F04YCF is not threaded by NAG in any implementation.
F04YCF 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.

9  Further Comments

9.1  Timing

The total time taken within F04YCF is proportional to n. For most problems the time taken during calls to F04YCF will be negligible compared with the time spent evaluating matrix-vector products between calls to F04YCF.
The number of matrix-vector products required varies from 4 to 11 (or is 1 if n=1). In most cases 4 or 5 products are required; it is rare for more than 7 to be needed.

9.2  Overflow

It is your responsibility to guard against potential overflows during evaluation of the matrix-vector products. In particular, when estimating B-11 using a triangular factorization of B, F04YCF should not be called if one of the factors is exactly singular – otherwise division by zero may occur in the substitutions.

9.3  Use in Conjunction with NAG Library Routines

To estimate the 1-norm of the inverse of a matrix A, the following skeleton code can normally be used:
      ...  code to factorize A ...  
      IF (A is not singular) THEN 
         ICASE = 0 
10       CALL F04YCF (ICASE,N,X,ESTNRM,WORK,IWORK,IFAIL) 
         IF (ICASE.NE.0) THEN 
            IF (ICASE.EQ.1) THEN 
               ...  code to compute inv(A)*x ...  
            ELSE 
               ...  code to compute inv(transpose(A))*x ...  
            END IF 
            GO TO 10 
         END IF 
      END IF
To compute A-1x or A-Tx, solve the equation Ay=x or ATy=x for y, overwriting y on x. The code will vary, depending on the type of the matrix A, and the NAG routine used to factorize A.
Note that if A is any type of symmetric matrix, then A=AT, and the code following the call of F04YCF can be reduced to:
 IF (ICASE.NE.0) THEN 
    ...  code to compute inv(A)*x ...
    GO TO 10
 END IF
The factorization will normally have been performed by a suitable routine from Chapters F01, F03 or F07. Note also that many of the ‘Black Box’ routines in Chapter F04 for solving systems of equations also return a factorization of the matrix. The example program in Section 10 illustrates how F04YCF can be used in conjunction with NAG Library routines for two important types of matrix: full nonsymmetric matrices (factorized by F07ADF (DGETRF)) and sparse nonsymmetric matrices (factorized by F01BRF).
It is straightforward to use F04YCF for the following other types of matrix, using the named routines for factorization and solution:
For upper or lower triangular matrices, no factorization routine is needed: A-1x and A-Tx may be computed by calls to F06PJF (DTRSV) (or F06PKF (DTBSV) if the matrix is banded, or F06PLF (DTPSV) if the matrix is stored in packed form).

10  Example

For this routine two examples are presented. There is a single example program for F04YCF, with a main program and the code to solve the two example problems is given in Example 1 (EX1) and Example 2 (EX2).
Example 1 (EX1)
To estimate the condition number A1A-11 of the matrix A given by
A= 1.5 2.0 3.0 -2.1 0.3 2.5 3.0 -4.0 2.3 -1.1 3.5 4.0 0.5 -3.1 -1.4 -0.4 -3.2 -2.1 3.1 2.1 1.7 3.7 1.9 -2.2 -3.3 .  
Example 2 (EX2)
To estimate the condition number A1A-11 of the matrix A given by
A= 5.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.0 2.0 0.0 0.0 0.0 2.0 3.0 0.0 0.0 0.0 -2.0 0.0 0.0 1.0 1.0 0.0 -1.0 0.0 0.0 -1.0 2.0 -3.0 -1.0 -1.0 0.0 0.0 0.0 6.0 .  

10.1  Program Text

Program Text (f04ycfe.f90)

10.2  Program Data

Program Data (f04ycfe.d)

10.3  Program Results

Program Results (f04ycfe.r)


F04YCF (PDF version)
F04 Chapter Contents
F04 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2015