Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx Ceil(TCplx X) | Round towards positive infinity. |
| 2 | TSCplx Ceil(TSCplx X) | |
| 3 | Double Ceil(Double X) | Round towards positive infinity. |
| 4 | Single Ceilf(Single X) |
Overload 1: TCplx Ceil(TCplx X)
Round towards positive infinity.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TCplx | scalar |
Returns: TCplx (complex)
Remarks:
Real and imaginary part are handled independently.
Overload 2: TSCplx Ceil(TSCplx X)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx | scalar |
Returns: TSCplx
Overload 3: Double Ceil(Double X)
Round towards positive infinity.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double | scalar |
Returns: Double - 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
Overload 4: Single Ceilf(Single X)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single | scalar |
Returns: Single