LISTARR Function
Returns a list.
Usage
result = LISTARR(number_elements[, value])
Input Parameters
number_elementsThe number of elements the created list should contain. Must be a scalar expression.
value(optional) The value with which to initialize each element of the list. May be any data type.
Returned Value
result—A list with the requested number of elements.
Keywords
None.
Discussion
Values in the list are initialized to 0L unless value is specified.
Example
INFO, LISTARR( 2, 10 ), /Full
; PV-WAVE prints:
; <Expression>    LIST      = List(2)
;   INT       =       10
;   INT       =       10
See Also