squiggle.c

Self-contained Monte Carlo estimation in C99
Log | Files | Refs | README

commit df2a563e395da972737285319130567f92eb5002
parent ab28b8a45b83c9e0339c7ce7458c9aea8c00d1cb
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Thu,  8 Feb 2024 15:42:17 +0100

fix printf template string

Diffstat:
Msquiggle_more.c | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/squiggle_more.c b/squiggle_more.c @@ -216,13 +216,13 @@ void array_print_stats(double xs[], int n) double std = array_std(xs, n); printf("| Statistic | Value |\n" "| --- | --- |\n" - "| Mean | %lf |\n" - "| Median | %lf |\n" - "| Std | %lf |\n" - "| 90% confidence interval | %lf to %lf |\n" - "| 80% confidence interval | %lf to %lf |\n" - "| 50% confidence interval | %lf to %lf |\n" - mean, median, std, ci_90.low, ci_90.high, ci_80.low, ci_80.high, ci_50.low, ci_50.high); + "| Mean | %lf |\n" + "| Median | %lf |\n" + "| Std | %lf |\n" + "| 90%% confidence interval | %lf to %lf |\n" + "| 80%% confidence interval | %lf to %lf |\n" + "| 50%% confidence interval | %lf to %lf |\n", + mean, median, std, ci_90.low, ci_90.high, ci_80.low, ci_80.high, ci_50.low, ci_50.high); } void array_print_histogram(double* xs, int n_samples, int n_bins)