Skip to content

Commit 29fa8b9

Browse files
committed
fix
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 95ca0d5 commit 29fa8b9

File tree

1 file changed

+2
-0
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/signrank/quantile/src

1 file changed

+2
-0
lines changed

lib/node_modules/@stdlib/stats/base/dists/signrank/quantile/src/main.c

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
#include "stdlib/stats/base/dists/signrank/quantile.h"
2020
#include <math.h>
21+
#include <stdlib.h>
2122

2223
/**
2324
* Evaluates the quantile function for the Wilcoxon signed-rank test statistic with `n` observations.
@@ -30,6 +31,7 @@
3031
* double y = stdlib_base_dists_signrank_quantile( 0.5, 5 );
3132
* // returns 11
3233
*/
34+
3335
double stdlib_base_dists_signrank_quantile(double p, int n) {
3436
if (isnan(p) || p < 0.0 || p > 1.0 || n <= 0) {
3537
return NAN;

0 commit comments

Comments
 (0)