Skip to content

Commit 62c6c0b

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent f9c4cf8 commit 62c6c0b

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dmeanpn/src

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ double API_SUFFIX(stdlib_strided_dmeanpn_ndarray)( const CBLAS_INT N, const doub
6767
dN = (double)N;
6868

6969
// Compute an estimate for the mean:
70-
mu = stdlib_strided_dsumpw_ndarray( N, X, strideX, offsetX );
70+
mu = API_SUFFIX(stdlib_strided_dsumpw_ndarray)( N, X, strideX, offsetX );
7171
mu /= dN;
7272

7373
// Compute an error term:
74-
c = stdlib_strided_dapxsumpw_ndarray( N, -mu, X, strideX, offsetX );
74+
c = API_SUFFIX(stdlib_strided_dapxsumpw_ndarray)( N, -mu, X, strideX, offsetX );
7575
c /= dN;
7676

7777
return mu + c;

0 commit comments

Comments
 (0)