x04dbf prints a
complex
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.
x04dbf may be used to print a vector, either as a row or as a column. The following code fragment illustrates possible calls.
complex*16 a(4)
Character*1 rlabs(1), clabs(1)
! Print vector A as a column vector.
lda = 4
ifail = 0
Call x04dbf('G','X',1,4,a,lda,'B',' ',' ','I',rlabs, &
'N',clabs,80,0,ifail)
! Print vector A as a row vector.
lda = 1
ifail = 0
Call x04dbf('G','X',4,1,a,lda,'B',' ',' ','N',rlabs, &
'I',clabs,80,0,ifail)
None.