From 9038270fb0de93ae489637da33485a0ec963394c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=20M=C3=A4ki?= Date: Mon, 16 Dec 2024 18:13:00 +0200 Subject: [PATCH] Fix p_high label position in const_cs_gw example --- examples/const_cs_gw.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/const_cs_gw.py b/examples/const_cs_gw.py index f68850a..860e2c0 100644 --- a/examples/const_cs_gw.py +++ b/examples/const_cs_gw.py @@ -189,10 +189,10 @@ def main(): pow_high = -3 k_high = np.logspace(1, 3, 10) - p_high = k_high**pow_high * 10**(-3) + p_high = k_high**pow_high * 10**(-3.3) for ax in axs2.flat: ax.plot(k_high, p_high, color="k") - ax.text(5.3, 10**(-7), f"$k^{{{pow_high}}}$") + ax.text(5.3, 10**(-7.5), f"$k^{{{pow_high}}}$") for ax in axs1.flat: ax.set_xlim(0.25, 0.95)