File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/node_modules/@stdlib/blas/base/icamax/lib Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ var ndarray = require( './ndarray.js' );
3131*
3232* @param {PositiveInteger } N - number of indexed elements
3333* @param {Float64Array } x - input array
34- * @param {integer } stride - `x` stride length
34+ * @param {integer } strideX - `x` stride length
3535* @returns {integer } index value
3636*
3737* @example
@@ -42,9 +42,9 @@ var ndarray = require( './ndarray.js' );
4242* var y = icamax( x.length, x, 1 );
4343* // returns 3
4444*/
45- function icamax ( N , x , stride ) {
46- var ox = stride2offset ( N , stride ) ;
47- return ndarray ( N , x , stride , ox ) ;
45+ function icamax ( N , x , strideX ) {
46+ var ox = stride2offset ( N , strideX ) ;
47+ return ndarray ( N , x , strideX , ox ) ;
4848}
4949
5050
You can’t perform that action at this time.
0 commit comments