We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e48f3bc commit 49d7694Copy full SHA for 49d7694
lib/node_modules/@stdlib/stats/base/smeanwd/src/main.c
@@ -78,7 +78,7 @@ float API_SUFFIX(stdlib_strided_smeanwd_ndarray)( const CBLAS_INT N, const float
78
for ( i = 0; i < N; i++ ) {
79
n += 1.0;
80
mu += (float)((double)( X[ix]-mu ) / n);
81
- ix += stride;
+ ix += strideX;
82
}
83
return mu;
84
0 commit comments