Math387.Bigger / Biggerf Method

Overload List

#SignatureDescription
1function Bigger(const X: TCplx; const Y: TCplx): Boolean;Compares two complex numbers.
2function Bigger(const X: TCplx; const Y: Double): Boolean;Compare one real and one complex number.
3function Bigger(const X: TSCplx; const Y: TSCplx): Boolean;
4function Bigger(const X: TSCplx; const Y: Single): Boolean;
5function Bigger(const X: Double; const Y: TCplx): Boolean;Compare one real and one complex number.
6function Bigger(const A: Double; const B: Double; const Tol: Double): Boolean;Compare two real numbers.
7function Bigger(const X: Single; const Y: TSCplx): Boolean;
8function Biggerf(const A: Single; const B: Single; const Tol: Single): Boolean;

Overload 1: function Bigger(const X: TCplx; const Y: TCplx): Boolean;

Compares two complex numbers.

#NameTypeDescription
1XTCplx
2YTCplx

Returns: Boolean - True if X is bigger then Y. If absolute values are equal it compares the phase

Overload 2: function Bigger(const X: TCplx; const Y: Double): Boolean;

Compare one real and one complex number.

#NameTypeDescription
1XTCplx
2YDouble

Returns: Boolean

Overload 3: function Bigger(const X: TSCplx; const Y: TSCplx): Boolean;

#NameTypeDescription
1XTSCplx
2YTSCplx

Returns: Boolean

Overload 4: function Bigger(const X: TSCplx; const Y: Single): Boolean;

#NameTypeDescription
1XTSCplx
2YSingle

Returns: Boolean

Overload 5: function Bigger(const X: Double; const Y: TCplx): Boolean;

Compare one real and one complex number.

#NameTypeDescription
1XDouble
2YTCplx

Returns: Boolean

Overload 6: function Bigger(const A: Double; const B: Double; const Tol: Double): Boolean;

Compare two real numbers.

#NameTypeDescription
1ADouble
2BDouble
3TolDouble

Returns: Boolean - true, if A is bigger than B within defined tolerance: |A-b| > Tol .

Overload 7: function Bigger(const X: Single; const Y: TSCplx): Boolean;

#NameTypeDescription
1XSingle
2YTSCplx

Returns: Boolean

Overload 8: function Biggerf(const A: Single; const B: Single; const Tol: Single): Boolean;

#NameTypeDescription
1ASingle
2BSingle
3TolSingle

Returns: Boolean