aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/laguerre/scripts/targets.py
blob: 73d6e03e0b5fcac8142188e59fe21519b24c2398 (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
39
40
41
42
43
44
45
46
47
48
import numpy as np
import scipy.special

import gamma_approx as ga


def find_best_loc(N=200, a=1.375, b=0.5, ns=None):
    if ns is None:
        ns = np.arange(2, 13)
    bests = []
    step = 1 / (N - 1)
    x = np.linspace(step, 1 - step, N + 1)
    gamma = scipy.special.gamma(x)[:, None]
    for n in ns:
        zeros, weights = np.polynomial.laguerre.laggauss(n)
        est = np.ceil(b + a * n)
        targets = np.arange(max(est - 2, 0), est + 3)
        glag = [
            ga.eval_laguerre_gamma(x, target=target, x=zeros, w=weights, func="shifted")
            for target in targets
        ]
        gamma_lag = np.stack(glag, -1)
        rel_error = np.abs(ga.calc_rel_error(gamma, gamma_lag))
        best = np.argmin(rel_error, -1) + targets[0]
        bests.append(best)
    return np.stack(bests, 0)


if __name__ == "__main__":
    import matplotlib.pyplot as plt
    N = 200
    ns = np.arange(2, 13)
    
    bests = find_best_loc(N, ns=ns)

    fig, ax = plt.subplots(num=1, clear=True, constrained_layout=True, figsize=(4, 2.4))
    v = ax.imshow(bests, cmap="inferno", aspect="auto", interpolation="nearest")
    plt.colorbar(v, ax=ax, label=r"$m^*$")
    ticks = np.arange(0, N + 1, N // 5)
    ax.set_xlim(0, 1)
    ax.set_xticks(ticks)
    ax.set_xticklabels([f"{v:.2f}" for v in ticks / N])
    ax.set_xticks(np.arange(0, N + 1, N // 20), minor=True)
    ax.set_yticks(np.arange(len(ns)))
    ax.set_yticklabels(ns)
    ax.set_xlabel(r"$z$")
    ax.set_ylabel(r"$n$")
    fig.savefig(f"{ga.img_path}/targets.pgf")