KPG_FISEx

Substitutes a constant value in a defined section of an array

Description:

This fills a rectangular section of a multi-dimensional array with a constant.

Invocation

CALL KPG_FISEx( VALUE, NDIM, DIMS, LBND, UBND, ARRAY, STATUS )

Arguments

VALUE = ? (Given)
Value to be substituted in every pixel within the defined section.
NDIM = INTEGER (Given)
The number of dimensions of the array, up to NDF__MXDIM (defined in NDF_PAR).
DIMS( NDIM ) = INTEGER (Given)
Dimensions of the array to be edited.
LBND( NDIM ) = INTEGER (Given)
Lower bounds of the section whose elements are assigned to VALUE. These are in the range 1 to DIMS( I ) for the Ith dimension.
UBND( NDIM ) = INTEGER (Given)
Upper bounds of the section whose elements are assigned to VALUE. These are in the range LBND( I ) to DIMS( I ) for the Ith dimension.
ARRAY( ) = ? (Given and Returned)
The array to be edited.
STATUS = INTEGER (Given)
The global status.

Notes: