COMPLEXARR
The
COMPLEXARR function returns a
complex, single-precision, floating-point vector or array.
Calling Sequence
Result = COMPLEXARR(
D
1
, ..., D
n
)
Arguments
D
i
The dimensions of the result. The dimension parameters may be any scalar expression. Up to eight dimensions can be specified.
Keywords
NOZERO
Normally, COMPLEXARR sets every element of the result to zero. If the NOZERO keyword is set, this zeroing is not performed, and COMPLEXARR executes faster.
Example
To create an empty, 5-element by 5-element, complex array C, enter:
C = COMPLEXARR(5, 5)