1
0
Fork 0
mirror of https://github.com/Findus23/halo_comparison.git synced 2024-09-19 16:03:50 +02:00

fix figure

This commit is contained in:
Lukas Winkler 2022-07-22 13:13:48 +02:00
parent 0dd80f4a1c
commit 969e85ca9e
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -217,8 +217,8 @@ def fourier_wavelet(h, g, n):
return k, fphi, fpsi
ax.plot([0, np.pi], [0., 0.], 'k:')
ax.plot([0, np.pi], [1., 1.], 'k:')
# ax.plot([0, np.pi], [0., 0.], 'k:')
# ax.plot([0, np.pi], [1., 1.], 'k:')
kh, fphih, fpsih = fourier_wavelet(h_Haar, g_Haar, 256)
ax.plot(kh, np.abs(fphih) ** 2, label='$\\hat\\varphi_{\\rm Haar}$', c="C0")
@ -245,8 +245,8 @@ def shannon(k):
return y
ax.plot(kdb8, shannon(kdb8), label='$\\hat\\varphi_{shannon}$', c="C4")
ax.plot(kdb8, 1 - shannon(kdb8), label='$\\hat\\psi_{shannon}$', c="C4", linestyle="dashed")
ax.plot(kdb8, 1 - shannon(kdb8), label='$\\hat\\varphi_{shannon}$', c="C4")
ax.plot(kdb8, shannon(kdb8), label='$\\hat\\psi_{shannon}$', c="C4", linestyle="dashed")
# ax.plot(kdb8, np.abs(fpsidb8) ** 2, label='$\\hat\\psi_{DB8}$', c="C3", linestyle="dashed")
# kdb16, fphidb16, fpsidb16 = fourier_wavelet(h_DB16, g_DB16, 256)