Skip to content

Commit 11e852c

Browse files
chore: minor clean up
1 parent 9c85c1e commit 11e852c

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
* @param strideX stride length
4747
* @return output value
4848
*/
49-
double API_SUFFIX(stdlib_strided_dsnanmean)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX ) {
49+
double API_SUFFIX(stdlib_strided_dsnanmeanwd)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX ) {
5050
const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
51-
return API_SUFFIX(stdlib_strided_dsnanmean_ndarray)( N, X, strideX, ox );
51+
return API_SUFFIX(stdlib_strided_dsnanmeanwd_ndarray)( N, X, strideX, ox );
5252
}
5353

5454
/**
@@ -60,7 +60,7 @@ double API_SUFFIX(stdlib_strided_dsnanmean)( const CBLAS_INT N, const float *X,
6060
* @param offsetX starting index for X
6161
* @return output value
6262
*/
63-
double API_SUFFIX(stdlib_strided_dsnanmean_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
63+
double API_SUFFIX(stdlib_strided_dsnanmeanwd_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
6464
CBLAS_INT ix;
6565
CBLAS_INT i;
6666
CBLAS_INT n;

0 commit comments

Comments
 (0)