NAG Library Routine Document

x04ebf (print_matrix_integer_comp)

1
Purpose

x04ebf prints an integer matrix stored in a two-dimensional array.

2
Specification

Fortran Interface
Subroutine x04ebf ( matrix, diag, m, n, a, lda, form, title, labrow, rlabs, labcol, clabs, ncols, indent, ifail)
Integer, Intent (In):: m, n, a(lda,*), lda, ncols, indent
Integer, Intent (Inout):: ifail
Character (*), Intent (In):: form, title, rlabs(*), clabs(*)
Character (1), Intent (In):: matrix, diag, labrow, labcol
C Header Interface
#include <nagmk26.h>
void  x04ebf_ (const char *matrix, const char *diag, const Integer *m, const Integer *n, const Integer a[], const Integer *lda, const char *form, const char *title, const char *labrow, const char rlabs[], const char *labcol, const char clabs[], const Integer *ncols, const Integer *indent, Integer *ifail, const Charlen length_matrix, const Charlen length_diag, const Charlen length_form, const Charlen length_title, const Charlen length_labrow, const Charlen length_rlabs, const Charlen length_labcol, const Charlen length_clabs)

3
Description

x04ebf prints an integer matrix, or part of it, using a format specifier supplied by you. The matrix is output to the unit defined by x04abf.

4
References

None.

5
Arguments

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, x04ebf will exit immediately after printing title; no row or column labels are printed.
5:     alda* – Integer 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 arguments 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 x04ebf is called.
Constraint: ldamax1,m.
7:     form – Character(*)Input
On entry: a valid Fortran format code. This may be any format code allowed on the system, whether it is standard Fortran or not. form is used to print elements of the matrix A. It may or may not be enclosed in brackets. Examples of valid values for form are 'I6', 'I4,2X'.
In addition, there is a special code which forces x04ebf to choose its own format code:
form=' '
x04ebf will choose a format code such that numbers will be printed using the smallest edit descriptor that is large enough to hold all the numbers to be printed.
form='MATLAB' followed by any of the above, e.g., form='MATLABI6', form='MATLAB*'
x04ebf will print the matrix such that it can be input into MATLAB. Elements of the matrix will be printed with format specified by the format code following ‘MATLAB’. title will be used as the name of the matrix.
Constraint: the character length of the format specifier in form must be 80.
8:     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.
9:     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'.
10:   rlabs* – Character(*) arrayInput
Note: the dimension of the array rlabs must be at least m 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.
11:   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'.
12:   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.
13:   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.
14:   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.
15:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1 or 1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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 is not valid: matrix=value.
ifail=2
On entry, matrix=value, but diag is not valid: diag=value.
ifail=3
On entry, m=value and lda=value.
Constraint: mlda.
ifail=4
The string value has not been recognized as a valid format.
ifail=5
The string value has not been recognized as a valid format.
ifail=6
On entry, either labrow or labcol is not valid labrow=value, labcol=value.
ifail=7
On entry, ncols-indent is not wide enough to hold at least one matrix column: ncols=value, indent=value.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

Not applicable.

8
Parallelism and Performance

x04ebf is not threaded in any implementation.

9
Further Comments

x04ebf may be used to print a vector, either as a row or as a column. The following code fragment illustrates possible calls.
      Integer a(4)
      Character*1 rlabs(1), clabs(1)
!     Print vector A as a column vector.
      lda = 4
      ifail = 0
      Call x04ebf('G','X',1,4,a,lda,' ',' ','I',rlabs, &
                  'N',clabs,80,0,ifail)
!     Print vector A as a row vector.
      lda = 1
      ifail = 0
        Call x04ebf('G','X',4,1,a,lda,' ',' ','N',rlabs, &
                  'I',clabs,80,0,ifail)

10
Example

This example calls x04ebf twice, first to print a 3 by 5 rectangular matrix, and next to print a 5 by 5 upper triangular matrix; various options for labelling and formatting are illustrated.

10.1
Program Text

Program Text (x04ebfe.f90)

10.2
Program Data

None.

10.3
Program Results

Program Results (x04ebfe.r)