Skip to content

Commit c6cbc29

Browse files
committed
feat: add repl
1 parent 4f41dcf commit c6cbc29

File tree

1 file changed

+24
-0
lines changed
  • lib/node_modules/@stdlib/number/float16/base/from-word/docs

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)