RoundDown
Conversion functions roundDown
syntax
roundDown(a)
definition
roundDown(a) results in an integer data item rounded off downwards 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.
applies to
- data item with float32, float64, fpoint or dpoint value type
since version
5.45
example
attribute<int32> roundDownA (ADomain) := roundDown(A);
| A | roundDownA |
|---|---|
| 1.49 | 1 |
| 1.5 | 1 |
| -1.49 | -2 |
| -1.5 | -2 |
| -1.51 | -2 |
ADomain, nr of rows = 5