diff options
author | Patrik Müller <patrik.mueller@ost.ch> | 2022-06-02 15:53:49 +0200 |
---|---|---|
committer | Patrik Müller <patrik.mueller@ost.ch> | 2022-06-02 15:53:49 +0200 |
commit | fac45f54d4cee5018c063b4a720695cbf3040fa9 (patch) | |
tree | be5cb9eb93a04f9691ccfdc3657672d808403ca8 /buch/papers/laguerre/scripts | |
parent | Add presentation (diff) | |
download | SeminarSpezielleFunktionen-fac45f54d4cee5018c063b4a720695cbf3040fa9.tar.gz SeminarSpezielleFunktionen-fac45f54d4cee5018c063b4a720695cbf3040fa9.zip |
Correct typos in presentation
Diffstat (limited to '')
-rw-r--r-- | buch/papers/laguerre/scripts/gamma_approx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buch/papers/laguerre/scripts/gamma_approx.py b/buch/papers/laguerre/scripts/gamma_approx.py index dd50d92..857c735 100644 --- a/buch/papers/laguerre/scripts/gamma_approx.py +++ b/buch/papers/laguerre/scripts/gamma_approx.py @@ -192,7 +192,7 @@ bests = np.stack(bests, 0) fig3, ax3 = plt.subplots(num=3, clear=True, constrained_layout=True, figsize=(5, 3)) v = ax3.imshow(bests, cmap="inferno", aspect="auto", interpolation="nearest") -plt.colorbar(v, ax=ax3, label=r"$m$") +plt.colorbar(v, ax=ax3, label=r"$m^*$") ticks = np.arange(0, N + 1, N // 5) ax3.set_xlim(0, 1) ax3.set_xticks(ticks) |