ARY_NEWK

Create a new simple array

Description:

The routine creates a new simple array and returns an identifier for it. The array may subsequently be manipulated with the ARY_ routines.

Invocation

CALL ARY_NEWK( FTYPE, NDIM, LBND, UBND, PLACE, IARY, STATUS )

Arguments

FTYPE = CHARACTER ( ) (Given)
Full data type of the array.
NDIM = INTEGER (Given)
Number of array dimensions.
LBND( NDIM ) = INTEGER*8 (Given)
Lower pixel-index bounds of the array.
UBND( NDIM ) = INTEGER*8 (Given)
Upper pixel-index bounds of the array.
PLACE = INTEGER (Given and Returned)
An array placeholder (e.g. generated by the ARY_PLACE routine) which indicates the position in the data system where the new array will reside. The placeholder is annulled by this routine, and a value of ARY__NOPL will be returned (as defined in the include file ARY_PAR).
IARY = INTEGER (Returned)
Identifier for the new array.
STATUS = INTEGER (Given and Returned)
The global status.

Notes: