Command IPARDCL


        Parameters

IPARDCL names      
        /
        TYPE(tt)   
        INIT(ii)   
        COMMENT(cc)
        LIST       

Purpose

  Declaration of global parameters.

Example


  IPARDCL a(3) / type(4) init( 1,2,3 )  comment(test parameter)
  IPAR a /list

  gives

  A(1..3) double          /* test parameter
  1 2 3

Parameter names

   Name of the global parameter to be declared.

Parameter TYPE(tt)

Global parameter data type.
   tt=0: boolean
   tt=1: short integer
   tt=2: long integer
   tt=3: single precision float
   tt=4: double precision float
   tt>4: character string with length tt

Parameter INIT(ii)

List of initialization values. Initially all parameters are reset to zero.

Parameter COMMENT(cc)

Comment to be assigned to the specified global parameter.

Parameter LIST

Lists the successfully declared global parameter(s) on terminal.