Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double Ceil(const double X); | Round towards positive infinity. |
| 2 | TCplx Ceil(const TCplx &X); | Round towards positive infinity. |
| 3 | TSCplx Ceil(const TSCplx &X); |
Overload 1: double Ceil(const double X);
Round towards positive infinity.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const double |
Returns: the smallest integer rounded real greater than or equal to X. Ceil(-2.8) = -2 Ceil(2.8) = 3 Ceil(-1.0) = -1
See Also: Math387::Floor
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: TCplx Ceil(const TCplx &X);
Round towards positive 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 Ceil(const TSCplx &X);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TSCplx & |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler