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