Skip to content

Commit

Permalink
Fix p_high label position in const_cs_gw example
Browse files Browse the repository at this point in the history
  • Loading branch information
AgenttiX committed Dec 16, 2024
1 parent 21562f4 commit 9038270
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/const_cs_gw.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9038270

Please sign in to comment.