aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/laguerre/scripts/rel_error_mirror.py
blob: 7348d5eea483a6d97e6e974f0d580023ff1a5b9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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.rcParams.update(
        {
            "mathtext.fontset": "stix",
            "font.family": "serif",
            "font.serif": "TeX Gyre Termes",
        }
    )

    xmin = -15
    xmax = 15
    ns = np.arange(2, 12, 2)
    ylim = np.array([-11, 1])
    x = np.linspace(xmin + ga.EPSILON, xmax - ga.EPSILON, 400)
    gamma = scipy.special.gamma(x)
    fig, ax = plt.subplots(num=1, clear=True, constrained_layout=True, figsize=(5, 2.5))
    for n in ns:
        gamma_lag = ga.eval_laguerre_gamma(x, n=n, func="mirror")
        rel_err = ga.calc_rel_error(gamma, gamma_lag)
        ax.semilogy(x, np.abs(rel_err), label=f"$n={n}$")
    ax.set_xlim(x[0], x[-1])
    ax.set_ylim(*(10.0 ** ylim))
    ax.set_xticks(np.arange(xmin, xmax + ga.EPSILON, 5))
    ax.set_xticks(np.arange(xmin, xmax), minor=True)
    ax.set_yticks(10.0 ** np.arange(*ylim, 2))
    ax.set_xlabel(r"$z$")
    # ax.set_ylabel("Relativer Fehler")
    ax.legend(ncol=1, loc="upper left", fontsize=ga.fontsize)
    ax.grid(1, "both")
    # fig.savefig(f"{ga.img_path}/rel_error_mirror.pgf")
    fig.savefig(f"{ga.img_path}/rel_error_mirror.pdf")