[NAME] ALL.dao.type.complex [TITLE] Complex Type [DESCRIPTION] complex is the built-in primitive data type for complex numbers. Both the real and imagi nary part of a complex number are stored as double precision floating point numbers. 0.1 Definition 1 Complex ::= ( DecInteger | DecNumber | SciNumber ) 'C' complex has two fields real and imag, which can be used to set and get the real and imagi nary part of the complex. 0.2 Examples 1 var A = 1C 2 var B = 123C 3 var C = 12.3C 4 var R = C.real; 5 var I = C.imag;