Skip to content

Commit daee416

Browse files
committed
lint
1 parent 8de275b commit daee416

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include "stdlib/math/base/special/sqrt.h"
2222
#include "stdlib/blas/base/shared.h"
2323
#include "stdlib/strided/base/stride2offset.h"
24+
#include <math.h>
2425

2526
/**
2627
* Computes the standard deviation of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass textbook algorithm.
@@ -47,5 +48,5 @@ double API_SUFFIX(stdlib_strided_dnanstdevtk)( const CBLAS_INT N, const double c
4748
* @return output value
4849
*/
4950
double API_SUFFIX(stdlib_strided_dnanstdevtk_ndarray)( const CBLAS_INT N, const double correction, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
50-
return stdlib_base_sqrt( API_SUFFIX(stdlib_strided_dnanvariancetk_ndarray ) );
51+
return stdlib_base_sqrt( API_SUFFIX(stdlib_strided_dnanvariancetk_ndarray)( N, correction, X, strideX, offsetX ) );
5152
}

0 commit comments

Comments
 (0)