From b1f3f19580b5de0c4e0e83c7b4c71f605d43777b Mon Sep 17 00:00:00 2001 From: Matteo Cencini <83717049+mcencini@users.noreply.github.com> Date: Thu, 12 Sep 2024 10:22:49 +0200 Subject: [PATCH] Update getting_started.rst --- docs/getting_started.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 96415b4..1b9be76 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -49,8 +49,8 @@ as: import numpy as np TE = 10.0 # ms - rate_map = phantom.T2s + 1j * 2 * np.pi * b0_map - gre = smaps * phantom.M0 * np.exp(-rate_map * TE) + rate_map = 1e3 / phantom.T2s + 1j * 2 * np.pi * b0_map + gre = smaps * phantom.M0 * np.exp(-rate_map * TE * 1e-3) This can be coupled with other libraries (e.g., `MRI-NUFFT `_) to simulate more complex MR sequences (e.g., Non-Cartesian and sub-Nyquist imaging).