Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Pythag(const X: TCplx; const Y: TCplx): TCplx; | Complex version of Pythagora formula. |
| 2 | function Pythag(const X: TSCplx; const Y: TSCplx): TSCplx; | |
| 3 | function Pythag(const X: Double; const Y: Double): Double; | The Pythagora formula. |
| 4 | function Pythagf(const X: Single; const Y: Single): Single; |
Overload 1: function Pythag(const X: TCplx; const Y: TCplx): TCplx;
Complex version of Pythagora formula.
Returns: TCplx (complex) - Returns the Sqrt(X*X + Y*Y).
Overload 2: function Pythag(const X: TSCplx; const Y: TSCplx): TSCplx;
Overload 3: function Pythag(const X: Double; const Y: Double): Double;
The Pythagora formula.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double | |
| 2 | Y | Double |
Returns: Double - Returns the Sqrt(X*X + Y*Y).
See Also: Math387.Norm
Overload 4: function Pythagf(const X: Single; const Y: Single): Single;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single | |
| 2 | Y | Single |
Returns: Single