Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:software:qview:qview_6:qcl_library:vr10tosingle [2017/02/07 15:26] – created qem103en:software:qview:qview_6:qcl_library:vr10tosingle [2019/08/29 17:01] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== VR10ToSingle ======
 +
 +**V = **//Variables//
 +
 +**R = **//Reading functions//
 +
 +BINARY  ----> SINGLE
 +
 +The VR10ToSingle function __converts a Long Binary variable type (format IEEE754) in an Single float type__.
 +
 +===== IMPLEMENTATION =====
 +
 +**VR10ToSingle (input, output)**
 +
 +Parameters:
 +
 +^IN/OUT^VARIABLE TYPE^EXAMPLE TYPE^DIM^^
 +|  IN  |  GLOBAL\\ SYSTEM  |  input  |  L  |Variable containing the IEEE754 data format to be converted.|
 +|  OUT  |  GLOBAL\\ SYSTEM  |  output  |  S  |Variable containing the data converted.|
 +
 +=== Example ===
 +
 +Transforms the value **&H435ef361** in an Single value.
 +
 +<code QCL>
 +input = &H435ef361
 +
 +VR10ToSingle (input, output)
 +
 +;On the data output will be :
 +; output = 222.9506989
 +</code>
 +
 +=== Note ===