diff options
author | Patrik Müller <patrik.mueller@ost.ch> | 2022-06-03 07:23:21 +0200 |
---|---|---|
committer | Patrik Müller <patrik.mueller@ost.ch> | 2022-06-03 07:23:21 +0200 |
commit | 8fb46098cb8e42a94b8e01ecc809f536d5c7efaf (patch) | |
tree | 856162e03079e0d1c560410c9f42cac6682e0ac1 /buch/papers/laguerre/scripts | |
parent | Add n != m to presentation at orthogonality section (diff) | |
download | SeminarSpezielleFunktionen-8fb46098cb8e42a94b8e01ecc809f536d5c7efaf.tar.gz SeminarSpezielleFunktionen-8fb46098cb8e42a94b8e01ecc809f536d5c7efaf.zip |
Minor tweaks of presentation
Diffstat (limited to 'buch/papers/laguerre/scripts')
-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 857c735..53ba76b 100644 --- a/buch/papers/laguerre/scripts/gamma_approx.py +++ b/buch/papers/laguerre/scripts/gamma_approx.py @@ -241,7 +241,7 @@ for target in targets: ax5.semilogy(x, rel_error, label=f"$m={target}$", linewidth=3) gamma_lgo = eval_laguerre_gamma(x, n=n, func="optimal_shifted") rel_error = np.abs(calc_rel_error(gamma, gamma_lgo)) -ax5.semilogy(x, rel_error, "c", linestyle="dotted", label="$m^*$", linewidth=3) +ax5.semilogy(x, rel_error, "m", linestyle="dotted", label="$m^*$", linewidth=3) ax5.set_xlim(x[0], x[-1]) ax5.set_ylim(5e-9, 5e-8) ax5.set_xlabel(r"$z$") |