PAR_DEFNx

Sets an array of values as the dynamic default for a parameter

Description:

This routine sets an array of values as the dynamic default for a parameter. The dynamic default may be used as the parameter value by means of appropriate specifications in the interface file.

If the declared parameter type differs from the type of the array supplied, then conversion is performed.

Invocation

CALL PAR_DEFNx( PARAM, NDIM, MAXD, VALUES, ACTD, STATUS )

Arguments

PARAM = CHARACTER() (Given)
The name of the parameter.
NDIM = INTEGER (Given)
The number of dimensions of the values array.
MAXD( NDIM ) = INTEGER (Given)
The dimensions of the values’ array.
VALUES( ) = ? (Given)
The default values, given in Fortran order.
ACTD( NDIM ) = INTEGER (Given)
The dimensions of the dynamic default object to be created.
STATUS = INTEGER (Given and Returned)
The global status.

Notes: