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.