This is part of 3.33.0latest release.

COMPLEX

1.0.0
since lib: v3.1.0  

The COMPLEX structure can present complex numbers.

The COMPLEX structure can present complex numbers.

Version history

1.0.0

  hm

Changes

Added:
  • original version

Overview

nametypedefaultcomment
reREALReal part of a complex number
imREALImaginary part of a complex number

Details

re

REAL

Real part of a complex number.

im

REAL

Imaginary 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