Differences
This shows you the differences between two versions of the page.
en:software:qview:qview_6:qcl_library:vr10tosingle [2017/02/07 15:26] – created qem103 | en: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 = **// | ||
+ | |||
+ | **R = **//Reading functions// | ||
+ | |||
+ | BINARY | ||
+ | |||
+ | The VR10ToSingle function __converts a Long Binary variable type (format IEEE754) in an Single float type__. | ||
+ | |||
+ | ===== IMPLEMENTATION ===== | ||
+ | |||
+ | **VR10ToSingle (input, output)** | ||
+ | |||
+ | Parameters: | ||
+ | |||
+ | ^IN/ | ||
+ | | IN | GLOBAL\\ SYSTEM | ||
+ | | OUT | GLOBAL\\ SYSTEM | ||
+ | |||
+ | === Example === | ||
+ | |||
+ | Transforms the value **& | ||
+ | |||
+ | <code QCL> | ||
+ | input = & | ||
+ | |||
+ | VR10ToSingle (input, output) | ||
+ | |||
+ | ;On the data output will be : | ||
+ | ; output = 222.9506989 | ||
+ | </ | ||
+ | |||
+ | === Note === | ||