x04cbf 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.
None.
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Not applicable.
Background information to multithreading can be found in the
Multithreading documentation.
x04cbf may be used to print a vector, either as a row or as a column. The following code fragment illustrates possible calls.
Real (Kind=nag_wp) a(4)
Character*1 rlabs(1), clabs(1)
! Print vector A as a column vector.
lda = 4
ifail = 0
Call x04cbf('G','X',4,1,a,lda,' ',' ','I',rlabs, &
'N',clabs,80,0,ifail)
! Print vector A as a row vector.
lda = 1
ifail = 0
Call x04cbf('G','X',1,4,a,lda,' ',' ','N',rlabs, &
'I',clabs,80,0,ifail)
None.