DCOMPLEXARR
The
DCOMPLEXARR function returns a
complex, double-precision, floating-point vector or array.
Calling Sequence
Result = DCOMPLEXARR(
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, DCOMPLEXARR sets every element of the result to zero. If the NOZERO keyword is set, this zeroing is not performed, and DCOMPLEXARR executes faster.
Example
To create an empty, 5-element by 5-element, complex array DC, enter:
DC = DCOMPLEXARR(5, 5)