PURPOSE

To print a full matrix in memory.

SYNOPSIS

CALL FMSPRF (A, NROWS, NCOLS, ISTYPE, IDTYPE)

INPUT PARAMETERS

OUTPUT PARAMETERS:

None.

FMS PARAMETERS:

The following FMS Parameters are especially important to this routine:
Parameter Description
LUPR Output unit number
NEQPR1 Lower limit on equation to print
NEQPR2 Upper limit on equation to print
NROWPG Number of rows per page
NCOLPG Number of columns per page
IFMAT Format for printing integers
RFMAT Format for printing real numbers
CFMAT Format for printing complex numbers

DESCRIPTION:

This subroutine prints a full matrix that is stored in memory. The matrix may be in lower triangular format (ISTYPE=1) or a full matrix (ISTYPE=2).

The FMS parameters NEQPR1 and NEQPR2 may be used to set lower and upper limits on the range of equations printed. The effect of these parameters on printing the full matrix [A] is to print the following submatrix:

A(NEQPR1:NEQPR2,NEQPR1:NEQPR2)