From 3d3eb9d50ef22314aead910364423039fc7059a9 Mon Sep 17 00:00:00 2001 From: Damar Wicaksono Date: Wed, 27 Nov 2024 18:34:10 +0100 Subject: [PATCH] [HotFix] Fix issue with the docs on Genz discontinuous --- CHANGELOG.md | 3 +++ docs/test-functions/genz-discontinuous.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3ef7bd..89fc96e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- The M-dimensional discontinuous function from Genz (1984) for integration and + sensitivity analysis exercises; one parameter set from the literature + is included. - The M-dimensional oscillatory function from Genz (1984) for integration exercises; one parameter set from the literature is included. - The M-dimensional Gaussian function from Genz (1984) for integration diff --git a/docs/test-functions/genz-discontinuous.md b/docs/test-functions/genz-discontinuous.md index 987712d..93be886 100644 --- a/docs/test-functions/genz-discontinuous.md +++ b/docs/test-functions/genz-discontinuous.md @@ -215,7 +215,7 @@ my_testfun.prob_input.reset_rng(42) xx_test = my_testfun.prob_input.get_sample(100000) yy_test = my_testfun(xx_test) -plt.hist(yy_test, bins="auto", color="#8da0cb"); +plt.hist(yy_test, color="#8da0cb"); plt.grid(); plt.ylabel("Counts [-]"); plt.xlabel("$\mathcal{M}(\mathbf{X})$");