aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/laguerre/scripts/rel_error_simple.py
diff options
context:
space:
mode:
Diffstat (limited to 'buch/papers/laguerre/scripts/rel_error_simple.py')
-rw-r--r--buch/papers/laguerre/scripts/rel_error_simple.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/buch/papers/laguerre/scripts/rel_error_simple.py b/buch/papers/laguerre/scripts/rel_error_simple.py
index 0929976..686500b 100644
--- a/buch/papers/laguerre/scripts/rel_error_simple.py
+++ b/buch/papers/laguerre/scripts/rel_error_simple.py
@@ -1,10 +1,21 @@
if __name__ == "__main__":
+ import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np
import scipy.special
import gamma_approx as ga
+ # mpl.rc("text", usetex=True)
+ mpl.rcParams.update(
+ {
+ "mathtext.fontset": "stix",
+ "font.family": "serif",
+ "font.serif": "TeX Gyre Termes",
+ }
+ )
+ # mpl.rcParams.update({"font.family": "serif", "font.serif": "TeX Gyre Termes"})
+
# Simple / naive
xmin = -5
xmax = 30
@@ -26,4 +37,5 @@ if __name__ == "__main__":
# ax.set_ylabel("Relativer Fehler")
ax.legend(ncol=3, fontsize=ga.fontsize)
ax.grid(1, "both")
- fig.savefig(f"{ga.img_path}/rel_error_simple.pgf")
+ # fig.savefig(f"{ga.img_path}/rel_error_simple.pgf")
+ fig.savefig(f"{ga.img_path}/rel_error_simple.pdf")