From 567fcfe37e5d5e62691a669687dd3af4cc71c589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandra=20Kr=C3=BCger?= Date: Mon, 26 Jun 2023 17:22:52 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9Esrc/nmreval/models/stimecho.py?= =?UTF-8?q?=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/nmreval/models/stimecho.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nmreval/models/stimecho.py b/src/nmreval/models/stimecho.py index 26cb111..a92c25d 100644 --- a/src/nmreval/models/stimecho.py +++ b/src/nmreval/models/stimecho.py @@ -50,8 +50,8 @@ class StimEchoZ0: def func(x, a, t_ev, delta, eta, mode='cos'): x = np.asarray(x) - theta = np.linspace(0, np.pi/2) - phi = np.linspace(0, 2*np.pi) + theta = np.linspace(0, np.pi/2, num=200) + phi = np.linspace(0, 2*np.pi, num=200) angles = np.array(list(product(theta, phi))) dt = theta[1] - theta[0] dp = phi[1] - phi[0]