NAG FL Interface
f04ydf (real_​gen_​norm_​rcomm)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

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

2 Specification

Fortran Interface
Subroutine f04ydf ( irevcm, m, n, x, ldx, y, ldy, estnrm, t, seed, work, iwork, ifail)
Integer, Intent (In) :: m, n, ldx, ldy, t, seed
Integer, Intent (Inout) :: irevcm, iwork(2*n+5*t+20), ifail
Real (Kind=nag_wp), Intent (Inout) :: x(ldx,*), y(ldy,*), estnrm, work(m*t)
C Header Interface
#include <nag.h>
void  f04ydf_ (Integer *irevcm, const Integer *m, const Integer *n, double x[], const Integer *ldx, double y[], const Integer *ldy, double *estnrm, const Integer *t, const Integer *seed, double work[], Integer iwork[], Integer *ifail)
The routine may be called by the names f04ydf or nagf_linsys_real_gen_norm_rcomm.

3 Description

f04ydf computes an estimate (a lower bound) for the 1-norm
A1 = max 1jn i=1 m |aij| (1)
of an m×n real matrix A=(aij). The routine regards the matrix A as being defined by a user-supplied ‘Black Box’ which, given an n×t matrix X (with tn) or an m×t matrix Y, can return AX or ATY. A reverse communication interface is used; thus control is returned to the calling program whenever a matrix 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 for a square matrix, B, and hence the condition number κ1(B)=B1B-11, without forming B-1 explicitly (A=B-1 above).
If, for example, an LU factorization of B is available, the matrix products B-1X and B-TY required by f04ydf 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, f04ydf can be used to estimate the -norm of A by working with AT instead of A.
The algorithm used is described in Higham and Tisseur (2000).

4 References

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
Higham N J and Tisseur F (2000) A block algorithm for matrix 1-norm estimation, with an application to 1-norm pseudospectra SIAM J. Matrix. Anal. Appl. 21 1185–1201

5 Arguments

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 argument irevcm. Between intermediate exits and re-entries, all arguments other than x and y must remain unchanged.
1: irevcm Integer Input/Output
On initial entry: must be set to 0.
On intermediate exit: irevcm=1 or 2, and x contains the n×t matrix X and y contains the m×t matrix Y. The calling program must
  1. (a)if irevcm=1, evaluate AX and store the result in y
    or
    if irevcm=2, evaluate ATY and store the result in x,
  2. (b)call f04ydf once again, with all the other arguments unchanged.
On intermediate re-entry: irevcm must be unchanged.
On final exit: irevcm=0.
Note: any values you return to f04ydf as part of the reverse communication procedure should not include floating-point NaN (Not a Number) or infinity values, since these are not handled by f04ydf. If your code does inadvertently return any NaNs or infinities, f04ydf is likely to produce unexpected results.
2: m Integer Input
On entry: the number of rows of the matrix A.
Constraint: m0.
3: n Integer Input
On entry: n, the number of columns of the matrix A.
Constraint: n0.
4: x(ldx,*) Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array x must be at least t.
On initial entry: need not be set.
On intermediate exit: if irevcm=1, contains the current matrix X.
On intermediate re-entry: if irevcm=2, must contain ATY.
On final exit: the array is undefined.
5: ldx Integer Input
On initial entry: the leading dimension of the array x as declared in the (sub)program from which f04ydf is called.
Constraint: ldxn.
6: y(ldy,*) Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array y must be at least t.
On initial entry: need not be set.
On intermediate exit: if irevcm=2, contains the current matrix Y.
On intermediate re-entry: if irevcm=1, must contain AX.
On final exit: the array is undefined.
7: ldy Integer Input
On initial entry: the leading dimension of the array y as declared in the (sub)program from which f04ydf is called.
Constraint: ldym.
8: estnrm Real (Kind=nag_wp) Input/Output
On initial entry: need not be set.
On intermediate re-entry: must not be changed.
On final exit: an estimate (a lower bound) for A1.
9: t Integer Input
On entry: the number of columns t of the matrices X and Y. This is an argument that can be used to control the accuracy and reliability of the estimate and corresponds roughly to the number of columns of A that are visited during each iteration of the algorithm.
If t2 then a partly random starting matrix is used in the algorithm.
Suggested value: t=2.
Constraint: 1tm.
10: seed Integer Input
On entry: the seed used for random number generation.
If t=1, seed is not used.
Constraint: if t>1, seed1.
11: work(m×t) Real (Kind=nag_wp) array Communication Array
12: iwork(2×n+5×t+20) Integer array Communication Array
On initial entry: need not be set.
On intermediate re-entry: must not be changed.
13: ifail Integer Input/Output
On initial entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value −1 is recommended since useful values can be provided in some output arguments even when ifail0 on exit. 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
Internal error; please contact NAG.
ifail=-1
On entry, irevcm=value.
Constraint: irevcm=0, 1 or 2.
On initial entry, irevcm=value.
Constraint: irevcm=0.
ifail=-2
On entry, m=value.
Constraint: m0.
ifail=-3
On entry, n=value.
Constraint: n0.
ifail=-5
On entry, ldx=value and n=value.
Constraint: ldxn.
ifail=-7
On entry, ldy=value and m=value.
Constraint: ldym.
ifail=-9
On entry, m=value and t=value.
Constraint: 1tm.
ifail=-10
On entry, t=value and seed=value.
Constraint: if t>1, seed1.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

In extensive tests on random matrices of size up to m=n=450 the estimate estnrm has been found always to be within a factor two 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 and Tisseur (2000) for further details.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
f04ydf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
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

For most problems the time taken during calls to f04ydf will be negligible compared with the time spent evaluating matrix products between calls to f04ydf.
The number of matrix products required depends on the matrix A. At most six products of the form Y=AX and five products of the form X=ATY will be required. The number of iterations is independent of the choice of t.

9.2 Overflow

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

9.3 Choice of t

The argument t controls the accuracy and reliability of the estimate. For t=1, the algorithm behaves similarly to the LAPACK estimator xLACON. Increasing t typically improves the estimate, without increasing the number of iterations required.
For t2, random matrices are used in the algorithm, so for repeatable results the same value of seed should be used each time.
A value of t=2 is recommended for new users.

9.4 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 
         irevcm = 0 
10       Call f04ydf (irevcm,m,n,x,ldx,y,ldy,estnrm,t,seed,work,   &
                      iwork,ifail) 
         If (irevcm.ne.0) Then 
            If (irevcm.eq.1) Then 
               ...  code to compute y=inv(A)x ...  
            Else 
               ...  code to compute x=inv(transpose(A))y ...  
            End If 
            Go To 10 
         End If 
      End If
To compute A-1X or A-TY, solve the equation AY=X or ATX=Y, storing the result in y or x respectively.
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.
It is straightforward to use f04ydf 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: Y=A-1X and X=A-TY may be computed by calls to f06pjf (or f06pkf if the matrix is banded, or f06plf if the matrix is stored in packed form).

10 Example

For this routine two examples are provided. There is a single example program for f04ydf, 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)
This example estimates the condition number A1A-11 of the matrix A given by
A= ( 0.7 -0.2 1.0 0.0 2.0 0.1 0.3 0.7 0.0 1.0 0.9 0.2 0.0 0.0 0.2 0.7 0.0 -1.1 0.0 3.4 -0.7 0.2 0.1 0.1 0.0 -4.0 0.0 1.0 9.0 0.0 0.4 1.2 4.3 0.0 6.2 5.9 ) .  
Example 2 (EX2)
This example estimates the condition number of the sparse matrix A (stored in symmetric coordinate storage format) given by
A = ( 0.0 0.0 0.0 1.0 0.0 3.0 1.0 0.0 0.0 0.0 0.0 2.0 0.0 2.0 0.0 2.0 0.0 4.0 0.0 5.0 0.0 1.0 2.0 0.0 0.0 ) .  

10.1 Program Text

Program Text (f04ydfe.f90)

10.2 Program Data

Program Data (f04ydfe.d)

10.3 Program Results

Program Results (f04ydfe.r)