X04EBF prints an integer matrix stored in a two-dimensional array.
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.
None.
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Not applicable.
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)
None.