Skip to content

Commit a24ec0a

Browse files
fix: changes return values
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: ---
1 parent f576699 commit a24ec0a

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dstdev/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dstdev/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ int main( void ) {
3030
const int strideX = 2;
3131

3232
// Compute the standard deviation:
33-
double v = stdlib_strided_dsemwd( N, 1.0, x, strideX );
33+
double v = stdlib_strided_dstdev( N, 1.0, x, strideX );
3434

3535
// Print the result:
3636
printf( "sample standard deviation: %lf\n", v );

0 commit comments

Comments
 (0)