The COMPLEX structure can present complex numbers.
Version history
1.0.0
 
hm
Changes
Added:
- original version
Overview
Details
re
REALReal part of a complex number.
im
REALImaginary part of a complex number.
Source code
Declarations
(*The COMPLEX structure can present complex numbers*)
TYPE index :
(*
* -----------------------------------------------------------------------------
* Name : index
* Version : 1.0.0
* Date : 2008-10-18
* Author : hm
*
* -----------------------------------------------------------------------------
* The COMPLEX structure can present complex numbers
* -----------------------------------------------------------------------------
*)
STRUCT
re : REAL; (*Real part of a complex number*)
im : REAL; (*Imaginary part of a complex number*)
END_STRUCT
END_TYPE