Matrix Expression Specification (MATRIX-END MATRIX command)
Specify any matrix expression that evaluates to the value(s) to be written.
- The matrix specification must precede any other specifications
on the
WRITE
statement. - 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,
WRITE A
,WRITE INV(A)
, orWRITE B**DET(T(C)*D)
is legal, butWRITE A+B
is not. You must specifyWRITE (A+B).
- Constant expressions are allowed.