Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double Pythag(const double X, const double Y); | The Pythagora formula. |
| 2 | TCplx Pythag(const TCplx &X, const TCplx &Y); | Complex version of Pythagora formula. |
| 3 | TSCplx Pythag(const TSCplx &X, const TSCplx &Y); |
Overload 1: double Pythag(const double X, const double Y);
The Pythagora formula.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const double | |
| 2 | Y | const double |
Returns: Returns the Sqrt(X*X + Y*Y).
See Also: Math387::Norm
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: TCplx Pythag(const TCplx &X, const TCplx &Y);
Complex version of Pythagora formula.
Returns: Returns the Sqrt(X*X + Y*Y).
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler