RoundDown_64
Conversion functions roundDown_64
syntax
roundDown_64(a)
definition
roundDown_64(a) results in an integer data item rounded off downwards from Data item a. Float32/64 data items are rounded off to the int64 Value type.
applies to
- Data item with float32 or float64 value type
since version
5.45
example
attribute<int64> roundDown_64A (ADomain) := roundDown_64(A);
| A | roundDown_64A |
|---|---|
| 1.49 | 1 |
| 1.5 | 1 |
| -1.49 | -2 |
| -1.5 | -2 |
| -1.51 | -2 |
ADomain, nr of rows = 5