x04cb prints a real matrix stored in a two-dimensional array.

Syntax

C#
public static void x04cb(
	string matrix,
	string diag,
	int m,
	int n,
	double[,] a,
	string form,
	string title,
	string labrow,
	string[] rlabs,
	string labcol,
	string[] clabs,
	int ncols,
	int indent,
	out int ifail
)
Visual Basic
Public Shared Sub x04cb ( _
	matrix As String, _
	diag As String, _
	m As Integer, _
	n As Integer, _
	a As Double(,), _
	form As String, _
	title As String, _
	labrow As String, _
	rlabs As String(), _
	labcol As String, _
	clabs As String(), _
	ncols As Integer, _
	indent As Integer, _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void x04cb(
	String^ matrix, 
	String^ diag, 
	int m, 
	int n, 
	array<double,2>^ a, 
	String^ form, 
	String^ title, 
	String^ labrow, 
	array<String^>^ rlabs, 
	String^ labcol, 
	array<String^>^ clabs, 
	int ncols, 
	int indent, 
	[OutAttribute] int% ifail
)
F#
static member x04cb : 
        matrix : string * 
        diag : string * 
        m : int * 
        n : int * 
        a : float[,] * 
        form : string * 
        title : string * 
        labrow : string * 
        rlabs : string[] * 
        labcol : string * 
        clabs : string[] * 
        ncols : int * 
        indent : int * 
        ifail : int byref -> unit 

Parameters

matrix
Type: System..::..String
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".
diag
Type: System..::..String
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".
m
Type: System..::..Int32
On entry: the number of rows and columns of the matrix, respectively, to be printed.
If either m or n is less than 1, x04cb will exit immediately after printing title; no row or column labels are printed.
n
Type: System..::..Int32
On entry: the number of rows and columns of the matrix, respectively, to be printed.
If either m or n is less than 1, x04cb will exit immediately after printing title; no row or column labels are printed.
a
Type: array<System..::..Double,2>[,](,)[,][,]
An array of size [dim1, dim2]
Note: dim1 must satisfy the constraint: dim1max1,m
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.
form
Type: System..::..String
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 x04cb to choose its own format code:
form=' '
x04cb 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='*'
x04cb 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’, x04cb 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.
title
Type: System..::..String
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.
labrow
Type: System..::..String
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".
rlabs
Type: array<System..::..String>[]()[][]
An array of size [dim1]
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.
labcol
Type: System..::..String
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".
clabs
Type: array<System..::..String>[]()[][]
An array of size [dim1]
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.
ncols
Type: System..::..Int32
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.
indent
Type: System..::..Int32
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.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

Description

x04cb prints a real matrix, or part of it, using a format specifier supplied by you. The matrix is output to the unit defined by (X04ABF not in this release).

References

None.

Error Indicators and Warnings

Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface (LDA) In these cases, an error in another parameter has usually caused an incorrect value to be inferred.
ifail=1
On entry,matrix"G", "L" or "U".
ifail=2
On entry,matrix="L" or "U", but diag"N", "U" or "B".
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.
ifail=-9000
An error occured, see message report.
ifail=-6000
Invalid Parameters value
ifail=-4000
Invalid dimension for array value
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

Accuracy

Not applicable.

Parallelism and Performance

None.

Further Comments

x04cb may be used to print a vector, either as a row or as a column. The following code fragment illustrates possible calls.

Example

This example calls x04cb twice, to print matrices of different orders and bandwidths; various options for labelling and formatting are illustrated.

Example program (C#): x04cbe.cs

Example program results: x04cbe.r

See Also