We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f41dcf commit c6cbc29Copy full SHA for c6cbc29
lib/node_modules/@stdlib/number/float16/base/from-word/docs/repl.txt
@@ -0,0 +1,24 @@
1
+
2
+{{alias}}( word )
3
+ Creates a half-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
+ Half-precision floating-point number.
15
16
+ Examples
17
+ --------
18
+ > var word = 15411; // => 0 01111 0000110011
19
+ > var f16 = {{alias}}( word ) // when printed, promoted to float64
20
+ 1.0498046875
21
22
+ See Also
23
24
0 commit comments