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' );
31
31
*
32
32
* @param {PositiveInteger } N - number of indexed elements
33
33
* @param {Float64Array } x - input array
34
- * @param {integer } stride - `x` stride length
34
+ * @param {integer } strideX - `x` stride length
35
35
* @returns {integer } index value
36
36
*
37
37
* @example
@@ -42,9 +42,9 @@ var ndarray = require( './ndarray.js' );
42
42
* var y = icamax( x.length, x, 1 );
43
43
* // returns 3
44
44
*/
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 ) ;
48
48
}
49
49
50
50
You can’t perform that action at this time.
0 commit comments