fix typo and remake

This commit is contained in:
NunoSempere 2024-01-30 13:28:17 +01:00
parent 90555bf3b3
commit 6010d99cba
16 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -191,7 +191,7 @@ ci array_get_90_ci(double xs[], int n)
double array_get_median(double xs[], int n){ double array_get_median(double xs[], int n){
int median_k = (int)floor(0.5 * n); int median_k = (int)floor(0.5 * n);
return quickselect(median_k, xs, n) return quickselect(median_k, xs, n);
} }
void array_print_stats(double xs[], int n){ void array_print_stats(double xs[], int n){