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

NAG Library Routine Document

X04DDF

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

X04DDF prints a complex triangular matrix stored in a packed one-dimensional array.

2  Specification

SUBROUTINE X04DDF ( UPLO, DIAG, N, A, USEFRM, FORM, TITLE, LABROW, RLABS, LABCOL, CLABS, NCOLS, INDENT, IFAIL)
INTEGER  N, NCOLS, INDENT, IFAIL
COMPLEX (KIND=nag_wp)  A(*)
CHARACTER(*)  FORM, TITLE, RLABS(*), CLABS(*)
CHARACTER(1)  UPLO, DIAG, USEFRM, LABROW, LABCOL

3  Description

X04DDF prints a complex triangular matrix stored in packed form, using a format specifier supplied by you. The matrix must be packed by column. The matrix is output to the unit defined by X04ABF.

4  References

None.

5  Parameters

1:     UPLO – CHARACTER(1)Input
On entry: indicates the type of the matrix to be printed
UPLO='L'
The matrix is lower triangular. In this case, the packed array A holds the matrix elements in the following order: 1,1,2,1,,N,1,2,2,3,2,,N,2, etc.
UPLO='U'
The matrix is upper triangular. In this case, the packed array A holds the matrix elements in the following order: 1,1,1,2,2,2,1,3,2,3,3,3,1,4, etc.
Constraint: UPLO='L' or 'U'.
2:     DIAG – CHARACTER(1)Input
On entry: indicates 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.
Constraint: DIAG='B', 'U' or 'N'.
3:     N – INTEGERInput
On entry: the number of rows and columns of the matrix to be printed.
If N is less than 1, X04DDF will exit immediately after printing TITLE; no row or column labels are printed.
4:     A(*) – COMPLEX (KIND=nag_wp) arrayInput
Note: the dimension of the array A must be at least max1,N×N+1/2.
On entry: the matrix to be printed. Note that A must have space for the diagonal elements of the matrix, even if these are not stored.
More precisely,
  • if UPLO='U', the upper triangle of A must be stored with element Aij in Ai+jj-1/2 for ij;
  • if UPLO='L', the lower triangle of A must be stored with element Aij in Ai+2n-jj-1/2 for ij.
If DIAG='U', the diagonal elements of A are assumed to be 1, and are not referenced; the same storage scheme is used whether DIAG='N' or ‘U’.
5:     USEFRM – CHARACTER(1)Input
On entry: indicates how the value of FORM is to be used to print matrix elements, except in MATLAB mode where USEFRM is ignored.
USEFRM='A'
The format code in FORM is assumed to contain a single real edit-descriptor which is to be used to print the real and imaginary parts of each complex number one above the other. Each row of the matrix is separated by a blank line, and any row labels are attached only to the real parts. This option means that about twice as many columns can be fitted into NCOLS characters than if any other USEFRM option is used. A typical value of FORM for this USEFRM option might be 'E13.4', '*' or ' '.
USEFRM='B'
The format code in FORM is assumed to contain a single edit-descriptor such as 'E13.4', '*' or ' ' which is used to print the real and imaginary parts of each complex number separated by a comma, and surrounded by brackets. Thus a matrix element printed with this USEFRM option might look like this: 12.345,-11.323.
USEFRM='D'
The format code in FORM is used unaltered to print a complex number. This USEFRM option allows you flexibility to specify exactly how the number is printed. With this option for USEFRM and a suitable value for FORM it is possible, for example, to print a complex number in the form 0.123+3.214i or 0.123E−02,0.234E−01. See Section 9 for an example illustrating this option.
Constraint: USEFRM='A', 'B' or 'D'.
6:     FORM – CHARACTER(*)Input
On entry: describes the Fortran format code that is used in conjunction with USEFRM for printing the elements of the matrix A. The format code may be any allowed on the system, whether it is standard Fortran or not. It may or may not be enclosed in brackets.
In addition, there are the following special codes which force X04DDF to choose its own format code:
FORM=' '
X04DDF 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 the real and imaginary parts 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 numbers to be printed lie between 0.001 and 9999.9999. Otherwise the 1PE13.4 code is chosen.
FORM='*'
X04DDF will choose a format code such that numbers will be printed to as many significant digits as are necessary to distinguish between neighbouring machine numbers. Thus any two numbers that are stored with different internal representations should look different on output. Whether they do in fact look different will depend on the run-time library of the Fortran compiler in use.
By preceding the desired format code by the string ‘MATLAB’, X04DDF will print the matrix such that it can be input into MATLAB, and TITLE will be used as the name of the matrix.
More complicated values of FORM, to print a complex number in a desired form, may be used. See the description of parameter USEFRM for more details.
Examples of valid values for FORM are '(F11.4)', '1P,2E13.5', 'MATLABF11.4', 'MATLAB*'.
Constraint: the character length of the format specifier in FORM must be 80.
7:     TITLE – CHARACTER(*)Input
On entry: a title to be printed above the matrix, or name of the matrix.
If TITLE=' ', no title (and no blank line) will be printed.
If TITLE contains more than NCOLS characters, the contents of TITLE will be wrapped onto more than one line, with the break after NCOLS characters.
Any trailing blank characters in TITLE are ignored.
If printing in MATLAB mode, TITLE will be used as the name of the matrix.
8:     LABROW – CHARACTER(1)Input
On entry: indicates the type of labelling to be applied to the rows of the matrix, except in MATLAB mode where LABROW is ignored.
LABROW='N'
Prints no row labels.
LABROW='I'
Prints integer row labels.
LABROW='C'
Prints character labels, which must be supplied in array RLABS.
Constraint: LABROW='N', 'I' or 'C'.
9:     RLABS(*) – CHARACTER(*) arrayInput
Note: the dimension of the array RLABS must be at least N if LABROW='C', and at least 1 otherwise.
On entry: if LABROW='C', RLABS must contain labels for the rows of the matrix, except in MATLAB mode where RLABS is ignored.
Labels are right-justified when output, in a field which is as wide as necessary to hold the longest row label. Note that this field width is subtracted from the number of usable columns, NCOLS.
10:   LABCOL – CHARACTER(1)Input
On entry: indicates the type of labelling to be applied to the columns of the matrix, except in MATLAB mode where LABCOL is ignored.
LABCOL='N'
Prints no column labels.
LABCOL='I'
Prints integer column labels.
LABCOL='C'
Prints character labels, which must be supplied in array CLABS.
Constraint: LABCOL='N', 'I' or 'C'.
11:   CLABS(*) – CHARACTER(*) arrayInput
Note: the dimension of the array CLABS must be at least N if LABCOL='C', and at least 1 otherwise.
On entry: if LABCOL='C', CLABS must contain labels for the columns of the matrix, except in MATLAB mode where CLABS is ignored.
Labels are right-justified when output. Any label that is too long for the column width, which is determined by FORM, is truncated.
12:   NCOLS – INTEGERInput
On entry: the maximum output record length. If the number of columns of the matrix is too large to be accommodated in NCOLS characters, the matrix will be printed in parts, containing the largest possible number of matrix columns, and each part separated by a blank line.
NCOLS must be large enough to hold at least one column of the matrix using the format specifier in FORM. If a value less than 0 or greater than 132 is supplied for NCOLS, then the value 80 is used instead.
13:   INDENT – INTEGERInput
On entry: the number of columns by which the matrix (and any title and labels) should be indented. The effective value of NCOLS is reduced by INDENT columns. If a value less than 0 or greater than NCOLS is supplied for INDENT, the value 0 is used instead.
14:   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,UPLO'L' or 'U'.
IFAIL=2
On entry,DIAG'N', 'U' or 'B'.
IFAIL=3
On entry,USEFRM'A', 'B' or 'D'.
IFAIL=4
On entry,the format specifier in FORM is more than 80 characters long.
IFAIL=5
The format specifier in FORM cannot be used to output a number. The specifier probably has too wide a field width or contains an illegal edit descriptor.
IFAIL=6
On entry,either LABROW or LABCOL'N', 'I' or 'C'.
IFAIL=7
The quantity NCOLS-INDENT-labwid (where labwid is the width needed for the row labels) is not large enough to hold at least one column of the matrix.

7  Accuracy

Not applicable.

8  Further Comments

None.

9  Example

This example program calls X04DDF three times, first to print a 4 by 4 lower triangular matrix, and then twice to print a 4 by 4 upper triangular matrix, various options for labelling and formatting are illustrated.

9.1  Program Text

Program Text (x04ddfe.f90)

9.2  Program Data

None.

9.3  Program Results

Program Results (x04ddfe.r)


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

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