Data Type

Character string

Default Value

(E12.4,1H,,E11.4)

Description

This parameter controls the format used to print complex data. You may change it to any valid FORTRAN format descriptor used to print complex data. For example, if you are printing matrix data and want to find out if the terms are zero or not, you might change it to (E9.1,1H,,E8.1). On the other hand if you are printing data and are concerned about the least significant digits, you might select (E23.15,1H,,E22.15). Naturally the more information you print out about each term, the more space (screen or paper) is used.

NOTE: Be sure and include the parenthesis and character string quotations in the format descriptor when calling subroutine FMSCST. When setting CFMAT in the license file or with FMSSET, the string quotations are not required. Also be sure and use a format descriptor that accounts for the real and imaginary parts of the complex number, as well as something to separate them.

EXAMPLES:

To change CFMAT with a subroutine call,
       CALL FMSCST ('CFMAT','(E9.1,1H,,E8.1)')
To change CFMAT using FMSSET,
FMSSET>CFMAT=(E9.1,1H,,E8.1)