NAG FL Interface
x04cff (print_​matrix_​real_​band_​comp)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

x04cff prints a real band matrix stored in a packed two-dimensional array.

2 Specification

Fortran Interface
Subroutine x04cff ( m, n, kl, ku, a, lda, form, title, labrow, rlabs, labcol, clabs, ncols, indent, ifail)
Integer, Intent (In) :: m, n, kl, ku, lda, ncols, indent
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: a(lda,*)
Character (*), Intent (In) :: form, title, rlabs(*), clabs(*)
Character (1), Intent (In) :: labrow, labcol
C Header Interface
#include <nag.h>
void  x04cff_ (const Integer *m, const Integer *n, const Integer *kl, const Integer *ku, const double 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_form, const Charlen length_title, const Charlen length_labrow, const Charlen length_rlabs, const Charlen length_labcol, const Charlen length_clabs)
The routine may be called by the names x04cff or nagf_file_print_matrix_real_band_comp.

3 Description

x04cff prints a real band matrix stored in a packed two-dimensional array, using a format specifier supplied by you. The matrix is output to the unit defined by x04abf.

4 References

None.

5 Arguments

1: m Integer Input
2: n Integer Input
On entry: the number of rows and columns of the band matrix, respectively, to be printed.
If either m or n is less than 1, x04cff will exit immediately after printing title; no row or column labels are printed.
3: kl Integer Input
On entry: the number of subdiagonals of the band matrix A.
Constraint: kl0.
4: ku Integer Input
On entry: the number of superdiagonals of the band matrix A.
Constraint: ku0.
5: a(lda,*) Real (Kind=nag_wp) array Input
Note: the second dimension of the array a must be at least max(1,min(m+ku,n)).
On entry: the band matrix to be printed.
The matrix is stored in rows 1 to kl+ku+1, more precisely, the element Aij must be stored in
a(ku+1+i-j,j)  for ​max(1,j-ku)imin(m,j+kl). 
6: lda Integer Input
On entry: the first dimension of the array a as declared in the (sub)program from which x04cff is called.
Constraint: ldakl+ku+1.
7: form Character(*) Input
On entry: describes the Fortran format code 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 x04cff to choose its own format code:
form=' '
x04cff 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.
form='*'
x04cff 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’, x04cff will print the matrix such that it can be input into MATLAB, and title will be used as the name of the matrix.
Examples of valid values for form are 'F11.4', '1PE13.5', 'G14.5', 'MATLABF11.4', 'MATLAB*'.
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(*) array Input
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(*) array Input
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 Integer Input
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 Integer Input
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 Integer Input/Output
On 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 0 is recommended. 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, kl=value.
Constraint: kl0.
ifail=2
On entry, ku=value.
Constraint: ku0.
ifail=3
On entry, lda<kl+ku+1: lda=value, kl=value, ku=value.
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 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

Not applicable.

8 Parallelism and Performance

x04cff is not threaded in any implementation.

9 Further Comments

None.

10 Example

This example calls x04cff three times, to print 5×5 matrices of different bandwidths; various options for labelling and formatting are illustrated.

10.1 Program Text

Program Text (x04cffe.f90)

10.2 Program Data

None.

10.3 Program Results

Program Results (x04cffe.r)