Matrix Expression (MATRIX-END MATRIX command)
Matrix expression is a single matrix variable name or an expression that evaluates
to a matrix. PRINT displays the
specified matrix.
- The matrix specification must precede any other specifications
on the
PRINTstatement. If no matrix is specified, no data will be displayed, but theTITLEandSPACEspecifications will be honored. - You can specify a matrix name, a matrix raised to
a power, or a matrix function (with its arguments in parentheses)
by itself, but you must enclose other matrix expressions in parentheses.
For example,
PRINT A,PRINT INV(A), andPRINT B**DET(T(C)*D)are all legal, butPRINT A+Bis not. You must specifyPRINT (A+B). - Constant expressions are allowed.
- A matrix program can consist entirely of
PRINTstatements, without defining any matrix variables.