Converts an expression to double-precisioncomplex data type.
Extracts data from an expression and places it in a complex scalar or array.
imaginary
offset
dimi
If only one parameter is supplied, the imaginary part of the result is 0; otherwise, it is set by the imaginary parameter. Parameters are first converted to double-precision floating-point.
Example
NOTE: If three or more parameters are supplied, DCOMPLEX extracts fields of data from expr, rather than performing conversion.
real = DINDGEN(5) b = DCOMPLEX(real) INFO, b
B DOUBLE COMPLEX = Array(5)
PRINT, b
( 0.0000000, 0.0000000)
( 1.0000000, 0.0000000)
( 2.0000000, 0.0000000)
( 3.0000000, 0.0000000)
( 4.0000000, 0.0000000)
img = INTARR(5) + 6 c = DCOMPLEX(real, img) INFO, c
C DOUBLE COMPLEX = Array(5)
PRINT, c
( 0.0000000, 6.0000000)
( 1.0000000, 6.0000000)
( 2.0000000, 6.0000000)
( 3.0000000, 6.0000000)
( 4.0000000, 6.0000000)
d = DCOMPLEX(real, 7) INFO, d
D DOUBLE COMPLEX = Array(5)
PRINT, d
( 0.0000000, 7.0000000)
( 1.0000000, 7.0000000)
( 2.0000000, 7.0000000)
( 3.0000000, 7.0000000)
( 4.0000000, 7.0000000)
e = DCOMPLEX(7, img) INFO, e
E DOUBLE COMPLEX = Array(5)
PRINT, e
See Also( 7.0000000, 6.0000000)
( 7.0000000, 6.0000000)
( 7.0000000, 6.0000000)
( 7.0000000, 6.0000000)
( 7.0000000, 6.0000000)
For more information on using this function to extract data, see the PV-WAVE Programmer's Guide.