Table of Contents

TO_DWORD

Function name

TO_DWORD

ST call

PROGRAM TO_DWORD_DEMO
   VAR
           D1: DWORD; 
     INT1: INT;
    END_VAR
    D1:=TO_DWORD(INT1);
END_PROGRAM

Description

The function brings the bit value of the input value to the output.

Inputs

InputType Description
IN ANY_ELEMENTARYInput value

Outputs

OutputType Description
DWORDOutput value

Application example

Calculation example

Input valueround ( _TO_ )floorceiltrunc
5.5 6 5 6 5
3.8 4 3 4 3
2.3 2 2 3 3
-2.3 -2 -3 -2 -2
-3.8 -4 -4 -3 -3
-5.5 -6 -6 -5 -5