repl.txt (535B)
1 2 {{alias}}( word ) 3 Creates a single-precision floating-point number from an unsigned integer 4 corresponding to an IEEE 754 binary representation. 5 6 Parameters 7 ---------- 8 word: integer 9 Unsigned integer. 10 11 Returns 12 ------- 13 out: float 14 Single-precision floating-point number. 15 16 Examples 17 -------- 18 > var word = 1068180177; // => 0 01111111 01010110010001011010001 19 > var f32 = {{alias}}( word ) // when printed, promoted to float64 20 1.3370000123977661 21 22 See Also 23 -------- 24