====== TO_ULINT ====== {{:en:mervis-ide:35-help:to_ulint.png}} ===== Function name ===== TO_ULINT ===== ST call ===== PROGRAM TO_ULINT_DEMO VAR UL1: ULINT; R1: REAL; END_VAR UL1:=TO_ULINT(R1); END_PROGRAM ===== Description ===== The function brings the whole number of the input value to the output. ===== Inputs ===== |Input|Type |Description| |IN |ANY_ELEMENTARY|Input value| ===== Outputs ===== |Output|Type |Description | |=> |ULINT|Output value| ===== Application example ===== {{:en:mervis-ide:35-help:to_ulint_example.png}} ===== Calculation example ===== |Input value|round ( _TO_ )|[[en:mervis-ide:35-help:035-software_basic:060-libraries:020-basic-analogue-boxes:015-mathematics:030-floor|floor]]|[[en:mervis-ide:35-help:035-software_basic:060-libraries:020-basic-analogue-boxes:015-mathematics:020-ceil|ceil]]|[[en:mervis-ide:35-help:035-software_basic:060-libraries:020-basic-analogue-boxes:015-mathematics:065-trunc|trunc]]| |5.5 |6 |5 |6 |5 | |3.8 |4 |3 |4 |3 | |2.3 |2 |2 |3 |3 | |-2.3 |0 |-3 |-2 |-2 | |-3.8 |0 |-4 |-3 |-3 | |-5.5 |0 |-6 |-5 |-5 |