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
- <spanclass="signature">[`imul( a, b )`][@stdlib/math/base/ops/imul]</span><spanclass="delimiter">: </span><spanclass="description">perform C-like multiplication of two signed 32-bit integers.</span>
54
54
- <spanclass="signature">[`imuldw( a, b )`][@stdlib/math/base/ops/imuldw]</span><spanclass="delimiter">: </span><spanclass="description">compute the double word product of two signed 32-bit integers.</span>
55
-
- <spanclass="signature">[`mulf( x, y )`][@stdlib/math/base/ops/mulf]</span><spanclass="delimiter">: </span><spanclass="description">multiply two single-precision floating-point numbers.</span>
55
+
- <spanclass="signature">[`mulf( x, y )`][@stdlib/number/float32/base/mul]</span><spanclass="delimiter">: </span><spanclass="description">multiply two single-precision floating-point numbers.</span>
56
56
- <spanclass="signature">[`subf( x, y )`][@stdlib/math/base/ops/subf]</span><spanclass="delimiter">: </span><spanclass="description">subtract two single-precision floating-point numbers.</span>
57
57
- <spanclass="signature">[`umul( a, b )`][@stdlib/math/base/ops/umul]</span><spanclass="delimiter">: </span><spanclass="description">perform C-like multiplication of two unsigned 32-bit integers.</span>
58
58
- <spanclass="signature">[`umuldw( a, b )`][@stdlib/math/base/ops/umuldw]</span><spanclass="delimiter">: </span><spanclass="description">compute the double word product of two unsigned 32-bit integers.</span>
@@ -80,10 +80,6 @@ var ns = require( '@stdlib/math/base/ops' );
80
80
console.log( ns.sub( 1.25, 0.45 ) );
81
81
// => 0.8
82
82
83
-
// Operations for single-precision floating point numbers:
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/ops/subf/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -197,7 +197,7 @@ int main( void ) {
197
197
198
198
- <spanclass="package-name">[`@stdlib/number/float32/base/add`][@stdlib/number/float32/base/add]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of two single-precision floating-point numbers.</span>
199
199
- <spanclass="package-name">[`@stdlib/number/float32/base/div`][@stdlib/number/float32/base/div]</span><spanclass="delimiter">: </span><spanclass="description">divide two single-precision floating-point numbers.</span>
200
-
- <spanclass="package-name">[`@stdlib/math/base/ops/mulf`][@stdlib/math/base/ops/mulf]</span><spanclass="delimiter">: </span><spanclass="description">multiply two single-precision floating-point numbers.</span>
200
+
- <spanclass="package-name">[`@stdlib/number/float32/base/mul`][@stdlib/number/float32/base/mul]</span><spanclass="delimiter">: </span><spanclass="description">multiply two single-precision floating-point numbers.</span>
201
201
- <spanclass="package-name">[`@stdlib/number/float64/base/sub`][@stdlib/number/float64/base/sub]</span><spanclass="delimiter">: </span><spanclass="description">subtract two double-precision floating-point numbers.</span>
0 commit comments