type CReal = Extended; type Complex = record re, im: CReal end; type TComplex = Complex;The Complex type describes a record that stores two fields of type CReal (see above), one that represents the real part of a complex number and one that represents the imaginary part.
CompMath Unit | Table of Content | CompMath Unit Overloaded Operators |