File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
number/float32/base/docs/types Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2361,12 +2361,12 @@ interface Namespace {
2361
2361
sapxsumkbn2 : typeof sapxsumkbn2 ;
2362
2362
2363
2363
/**
2364
- * Adds a constant to each single-precision floating-point strided array element and computes the sum using ordinary recursive summation.
2364
+ * Adds a scalar constant to each single-precision floating-point strided array element and computes the sum using ordinary recursive summation.
2365
2365
*
2366
2366
* @param N - number of indexed elements
2367
- * @param alpha - constant
2367
+ * @param alpha - scalar constant
2368
2368
* @param x - input array
2369
- * @param stride - stride length
2369
+ * @param strideX - stride length
2370
2370
* @returns sum
2371
2371
*
2372
2372
* @example
Original file line number Diff line number Diff line change @@ -162,11 +162,13 @@ interface Namespace {
162
162
*
163
163
* @example
164
164
* var toFloat32 = require( '@stdlib/number/float64/base/to-float32' );
165
+ *
165
166
* var bool = ns.signbitf( toFloat32( 4.0 ) );
166
167
* // returns false
167
168
*
168
169
* @example
169
170
* var toFloat32 = require( '@stdlib/number/float64/base/to-float32' );
171
+ *
170
172
* var bool = ns.signbitf( toFloat32( -9.14e-34 ) );
171
173
* // returns true
172
174
*
You can’t perform that action at this time.
0 commit comments