You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/special/powf/lib/log2ax.js
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
*
19
19
* ## Notice
20
20
*
21
-
* The following copyright and license were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_powf.c}. The implementation follows the original, but has been modified for JavaScript.
21
+
* The following copyright and license were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_powf.c}. The implementation follows the original, but has been modified for JavaScript.
22
22
*
23
23
* ```text
24
24
* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
@@ -39,6 +39,7 @@ var toWordf = require( '@stdlib/number/float32/base/to-word' );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/special/powf/lib/logx.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
*
19
19
* ## Notice
20
20
*
21
-
* The following copyright and license were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_powf.c}. The implementation follows the original, but has been modified for JavaScript.
21
+
* The following copyright and license were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_powf.c}. The implementation follows the original, but has been modified for JavaScript.
22
22
*
23
23
* ```text
24
24
* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
@@ -48,7 +48,7 @@ var HIGH_BIASED_EXP_NEG_64 = 0xfffff000; // asm type annotation
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/special/powf/lib/main.js
+38-95Lines changed: 38 additions & 95 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
*
19
19
* ## Notice
20
20
*
21
-
* The following copyright and license were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_powf.c}. The implementation follows the original, but has been modified for JavaScript.
21
+
* The following copyright and license were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_powf.c}. The implementation follows the original, but has been modified for JavaScript.
22
22
*
23
23
* ```text
24
24
* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
* - \\(\operatorname{pow}(x,y)\\) returns \\(x^y\\) nearly rounded. In particular, \\(\operatorname{pow}(<\mathrm{integer}>,<\mathrm{integer}>)\\) **always** returns the correct integer, provided the value is representable.
151
-
* - The hexadecimal values shown in the source code are the intended values for used constants. Decimal values may be used, provided the compiler will accurately convert decimal to binary in order to produce the hexadecimal values.
91
+
* Evaluates the exponential function for single-precision floating-point values.
0 commit comments