X04DAF (PDF version)
X04 Chapter Contents
X04 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

X04DAF

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

X04DAF is an easy-to-use routine to print a complex matrix stored in a two-dimensional array.

2  Specification

SUBROUTINE X04DAF ( MATRIX, DIAG, M, N, A, LDA, TITLE, IFAIL)
INTEGER  M, N, LDA, IFAIL
COMPLEX (KIND=nag_wp)  A(LDA,*)
CHARACTER(*)  TITLE
CHARACTER(1)  MATRIX, DIAG

3  Description

X04DAF prints a complex matrix. It is an easy-to-use driver for X04DBF. The routine uses default values for the format in which numbers are printed, for labelling the rows and columns, and for output record length.
X04DAF will choose a format code such that numbers will be printed with an F8.4, an F11.4 or a 1PE13.4 format. The F8.4 code is chosen if the sizes of all the matrix elements to be printed lie between 0.001 and 1.0. The F11.4 code is chosen if the sizes of all the matrix elements to be printed lie between 0.001 and 9999.9999. Otherwise the 1PE13.4 code is chosen. The chosen code is used to print each complex element of the matrix with the real part above the imaginary part.
The matrix is printed with integer row and column labels, and with a maximum record length of 80.
The matrix is output to the unit defined by X04ABF.

4  References

None.

5  Parameters

1:     MATRIX – CHARACTER(1)Input
On entry: indicates the part of the matrix to be printed.
MATRIX='G'
The whole of the rectangular matrix.
MATRIX='L'
The lower triangle of the matrix, or the lower trapezium if the matrix has more rows than columns.
MATRIX='U'
The upper triangle of the matrix, or the upper trapezium if the matrix has more columns than rows.
Constraint: MATRIX='G', 'L' or 'U'.
2:     DIAG – CHARACTER(1)Input
On entry: unless MATRIX='G', DIAG must specify whether the diagonal elements of the matrix are to be printed.
DIAG='B'
The diagonal elements of the matrix are not referenced and not printed.
DIAG='U'
The diagonal elements of the matrix are not referenced, but are assumed all to be unity, and are printed as such.
DIAG='N'
The diagonal elements of the matrix are referenced and printed.
If MATRIX='G', then DIAG need not be set.
Constraint: if MATRIX'G', DIAG='B', 'U' or 'N'.
3:     M – INTEGERInput
4:     N – INTEGERInput
On entry: the number of rows and columns of the matrix, respectively, to be printed.
If either M or N is less than 1, X04DAF will exit immediately after printing TITLE; no row or column labels are printed.
5:     A(LDA,*) – COMPLEX (KIND=nag_wp) arrayInput
Note: the second dimension of the array A must be at least max1,N.
On entry: the matrix to be printed. Only the elements that will be referred to, as specified by parameters MATRIX and DIAG, need be set.
6:     LDA – INTEGERInput
On entry: the first dimension of the array A as declared in the (sub)program from which X04DAF is called.
Constraint: LDAmax1,M.
7:     TITLE – CHARACTER(*)Input
On entry: a title to be printed above the matrix.
If TITLE=' ', no title (and no blank line) will be printed.
If TITLE contains more than 80 characters, the contents of TITLE will be wrapped onto more than one line, with the break after 80 characters.
Any trailing blank characters in TITLE are ignored.
8:     IFAIL – INTEGERInput/Output
On 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, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On 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,MATRIX'G', 'L' or 'U'.
IFAIL=2
On entry,MATRIX='L' or 'U', but DIAG'N', 'U' or 'B'.
IFAIL=3
On entry,LDA<M.

7  Accuracy

Not applicable.

8  Further Comments

A call to X04DAF is equivalent to a call to X04DBF with the following argument values:

NCOLS = 80
INDENT = 0
LABROW = 'I'
LABCOL = 'I'
FORM = ' '
USEFRM = 'A' 

9  Example

This example program calls X04DAF twice, first to print a 4 by 3 rectangular matrix, and then to print a 4 by 4 lower triangular matrix.

9.1  Program Text

Program Text (x04dafe.f90)

9.2  Program Data

None.

9.3  Program Results

Program Results (x04dafe.r)


X04DAF (PDF version)
X04 Chapter Contents
X04 Chapter Introduction
NAG Library Manual

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