Skip to content

Commit 33a3128

Browse files
committed
chore: apply review changes
1 parent e69e102 commit 33a3128

File tree

1 file changed

+1
-2
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/dnannsumpw/lib

1 file changed

+1
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/dnannsumpw/lib/sumpw.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,9 @@ var BLOCKSIZE = 128;
5858
* var floor = require( '@stdlib/math/base/special/floor' );
5959
*
6060
* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN ] );
61-
* var N = floor( x.length / 2 );
6261
*
6362
* var out = new Float64Array( [ 0.0, 0 ] );
64-
* var v = sumpw( N, x, 2, 1, out, 1, 0 );
63+
* var v = sumpw( 5.0, x, 2, 1, out, 1, 0 );
6564
* // returns <Float64Array>[ 5.0, 4 ]
6665
*/
6766
function sumpw( N, x, strideX, offsetX, out, strideOut, offsetOut ) {

0 commit comments

Comments
 (0)