LONARR
The
LONARR function returns a longword integer vector or array.
Calling Sequence
Result = LONARR(
D
1
, ..., D
n
)
Arguments
D
i
The dimensions of the result. The dimension parameters can be any scalar expression. Up to eight dimensions can be specified.
Keywords
NOZERO
Normally, LONARR sets every element of the result to zero. If NOZERO is set, this zeroing is not performed and LONARR executes faster.
Example
To create L, a 100-element, longword vector with each element set to 0, enter:
L = LONARR(100)