aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/ellfilter/python/elliptic.py
diff options
context:
space:
mode:
Diffstat (limited to 'buch/papers/ellfilter/python/elliptic.py')
-rw-r--r--buch/papers/ellfilter/python/elliptic.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/buch/papers/ellfilter/python/elliptic.py b/buch/papers/ellfilter/python/elliptic.py
index c9cf5bd..6e0fd12 100644
--- a/buch/papers/ellfilter/python/elliptic.py
+++ b/buch/papers/ellfilter/python/elliptic.py
@@ -342,9 +342,9 @@ k = np.array([0.1,0.2,0.4,0.6,0.9,0.99])
K = ell_int(k)
K_prime = ell_int(np.sqrt(1-k**2))
-axs[1].plot(K, K_prime, '.', color=last_color(), markersize=2)
-for x, y, n in zip(K, K_prime, k):
- axs[1].text(x+0.1, y+0.1, f"$k={n:.2f}$", rotation_mode="anchor")
+# axs[1].plot(K, K_prime, '.', color=last_color(), markersize=2)
+# for x, y, n in zip(K, K_prime, k):
+# axs[1].text(x+0.1, y+0.1, f"$k={n:.2f}$", rotation_mode="anchor")
axs[1].set_ylabel("$K^\prime$")
axs[1].set_xlabel("$K$")
axs[1].set_xlim([0,6])