RoundUp - ObjectVision/GeoDMS GitHub Wiki
Conversion functions roundUp
roundUp(a)
roundUp(a) results in a integer data item rounded off upwards from data item a. Float32/64 data items are rounded off to the int32 value type, f/dpoint data items to the ipoint value type.
- data item with float32, float64, fpoint or dpoint value type
5.45
attribute<int32> roundUpA (ADomain) := roundUp(A);
A | roundUpA |
---|---|
1.49 | 2 |
1.5 | 2 |
-1.49 | -1 |
-1.5 | -1 |
-1.51 | -1 |
ADomain, nr of rows = 5