Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double Floor(const double X); | Round towards negative infinity. |
| 2 | TCplx Floor(const TCplx &X); | Round towards negative infinity. |
| 3 | TSCplx Floor(const TSCplx &X); |
Overload 1: double Floor(const double X);
Round towards negative infinity.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const double |
Returns: the biggest integer rounded real less than or equal to X. Floor(-2.8) = -3 Floor(2.8) = 2 Floor(-1.0) = -1
See Also: Math387::Ceil
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: TCplx Floor(const TCplx &X);
Round towards negative infinity.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TCplx & |
Remarks:
Real and imaginary part are handled independently.
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 3: TSCplx Floor(const TSCplx &X);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TSCplx & |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler