├── .gitignore ├── BlochSimWeb ├── COPYING ├── Readme.md ├── Util_seqFileLoader.js ├── index.html ├── module.js ├── seq │ ├── out │ │ ├── web1_FID.seq │ │ ├── web2_SpinEcho_me.seq │ │ ├── web2_SpinEcho_sinc.seq │ │ ├── web3_FLASH_16.seq │ │ ├── web4_RARE_16.seq │ │ └── web5_EPI_16.seq │ ├── web1_FID.py │ ├── web2_SpinEcho_me.py │ ├── web3_FLASH_16.py │ ├── web4_RARE_16.py │ └── web5_EPI_16.py └── seqLoader.js ├── CIP_help.md ├── EULA ├── LICENSE ├── MRI Together ├── DS ISMRM Poster.png ├── Figure.pptx ├── Figure1.png └── abstract.md ├── README.md ├── README_CIP.md ├── README_COLAB.md ├── README_HOME.md ├── README_VIRTUAL.md ├── data ├── AdjDataUser2gB0_transversal_0.08moving_average.mat ├── brainweb │ ├── exA01_FID_brainweb.py │ ├── generate_maps.py │ └── solE01_FLASH_2D_brainweb.py ├── low_field_phantom.mat ├── numerical_brain_cropped.mat ├── out │ ├── flash pTx CP.seq │ ├── flash pTx EP.seq │ ├── flash pTx QM.seq │ └── flash.seq ├── phantom2D.mat ├── phantom_1Tx_ptx.pth └── subject05.npz ├── dependency-licenses.txt ├── ex ├── exA00_phantom.py ├── exA01_FID.py ├── exA02_SpinEcho.py ├── exA03_gradient_echo_1D.py ├── exA04_stimulated_echo.py ├── exA05_incoherent_echo_train.py ├── exB01_gradient_echo_pixel.py ├── exB02_gradient_echo_freq_enc.py ├── exB03_gradient_echo_phase_encoding.py ├── exB04_gradient_echo_freqphase_2D.py ├── exB05_GRE_2D_fully_relaxed.py ├── exB06_GRE_to_FLASH_2D.py ├── exB07_FLASH_2D_reordering.py ├── exB08_FLASH_2D_MP.py ├── exB09_GRE_EPI_2D.py ├── exC01_spinecho_2D.py ├── exC02_spinecho_to_RARE.py ├── exD01_bssfp.py ├── exE01_FLASH_2D.py ├── exF01_bSSFP_2D_radial_nufft.py ├── ex_help01_python.py ├── ex_help02_pypulseq.py ├── ex_help03_fft.py ├── ex_help04_permute.py ├── ex_help05_reverse.py ├── ex_help06_kxy_wave.py ├── info │ ├── exZ01_.py │ └── exZ01_email.py ├── out │ └── placeholder.txt ├── solA01_FID_multi_echo.py ├── solA01_FID_single_echo.py ├── solA02_SpinEcho.py ├── solA02_SpinEcho_multi_echo.py ├── solA03_gradient_echo_1D.py ├── solA03_gradient_echo_1D_me.py ├── solB01_gradient_echo_pixel.py ├── solB02_gradient_echo_freq_enc.py ├── solB03_gradient_echo_phase_encoding.py ├── solB04_gradient_echo_freqphase_2D.py ├── solB05_clean_GRE_2D_fully_relaxed.py ├── solB05_clean_GRE_2D_fully_relaxed_rotated.py ├── solB06_GRE_to_FLASH_2D.py ├── solB07_FLASH_2D_reordering.py ├── solB08_FLASH_2D_MP.py ├── solB09_GRE_EPI_2D.py ├── solC01_SE_2D.py ├── solC02_SE_to_RARE_2D_no_spoilers.py ├── solC02_SE_to_RARE_2D_with_spoilers.py ├── solD01_bSSFP_2D.py ├── solD02_bSSFP_rotatedFOV.py ├── solE01_FLASH_2D.py ├── solE02_RARE_2D.py ├── solE03_stimulated_echo.py ├── solF01_bSSFP_2D_radial_nufft.py ├── solF01_bSSFP_2D_radial_torchkbnufft.py ├── solF02_bSSFP_2D_radial_CS.py ├── solF03_simple_undersampled_CS.py ├── solF04_bSSFP_2D_cartesian_CS.py └── sol_help02_pypulseq.py ├── release_notes.md ├── run_all_examples.py ├── script ├── Readme.md ├── header.tex ├── img │ ├── Fig_MRhardware_and_Bfields.png │ ├── MRI_2DFT_SE_PulseSequence.png │ ├── SE_run.png │ ├── exA08.PNG │ ├── exA08_2.PNG │ ├── exA1_FID.png │ ├── exA4_STE_3pulses_5echoes.png │ ├── exA5_incoherent_echoes.png │ ├── exA_FID_SE_GRE.png │ ├── exB01_gradient_echo_pixel.png │ ├── exB08_FLASH_MP.png │ ├── ex_help02_pypulseq.png │ ├── seq_FLASH.png │ └── seq_k_traj_GRE.png ├── main.tex ├── script_MRTwinPulseq_3_0_1.pdf └── symmetric_rf_pulse_blocks.pptx └── utils └── edutils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/.gitignore -------------------------------------------------------------------------------- /BlochSimWeb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/COPYING -------------------------------------------------------------------------------- /BlochSimWeb/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/Readme.md -------------------------------------------------------------------------------- /BlochSimWeb/Util_seqFileLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/Util_seqFileLoader.js -------------------------------------------------------------------------------- /BlochSimWeb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/index.html -------------------------------------------------------------------------------- /BlochSimWeb/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/module.js -------------------------------------------------------------------------------- /BlochSimWeb/seq/out/web1_FID.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/out/web1_FID.seq -------------------------------------------------------------------------------- /BlochSimWeb/seq/out/web2_SpinEcho_me.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/out/web2_SpinEcho_me.seq -------------------------------------------------------------------------------- /BlochSimWeb/seq/out/web2_SpinEcho_sinc.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/out/web2_SpinEcho_sinc.seq -------------------------------------------------------------------------------- /BlochSimWeb/seq/out/web3_FLASH_16.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/out/web3_FLASH_16.seq -------------------------------------------------------------------------------- /BlochSimWeb/seq/out/web4_RARE_16.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/out/web4_RARE_16.seq -------------------------------------------------------------------------------- /BlochSimWeb/seq/out/web5_EPI_16.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/out/web5_EPI_16.seq -------------------------------------------------------------------------------- /BlochSimWeb/seq/web1_FID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/web1_FID.py -------------------------------------------------------------------------------- /BlochSimWeb/seq/web2_SpinEcho_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/web2_SpinEcho_me.py -------------------------------------------------------------------------------- /BlochSimWeb/seq/web3_FLASH_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/web3_FLASH_16.py -------------------------------------------------------------------------------- /BlochSimWeb/seq/web4_RARE_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/web4_RARE_16.py -------------------------------------------------------------------------------- /BlochSimWeb/seq/web5_EPI_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seq/web5_EPI_16.py -------------------------------------------------------------------------------- /BlochSimWeb/seqLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/BlochSimWeb/seqLoader.js -------------------------------------------------------------------------------- /CIP_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/CIP_help.md -------------------------------------------------------------------------------- /EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/EULA -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/LICENSE -------------------------------------------------------------------------------- /MRI Together/DS ISMRM Poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/MRI Together/DS ISMRM Poster.png -------------------------------------------------------------------------------- /MRI Together/Figure.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/MRI Together/Figure.pptx -------------------------------------------------------------------------------- /MRI Together/Figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/MRI Together/Figure1.png -------------------------------------------------------------------------------- /MRI Together/abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/MRI Together/abstract.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/README.md -------------------------------------------------------------------------------- /README_CIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/README_CIP.md -------------------------------------------------------------------------------- /README_COLAB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/README_COLAB.md -------------------------------------------------------------------------------- /README_HOME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/README_HOME.md -------------------------------------------------------------------------------- /README_VIRTUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/README_VIRTUAL.md -------------------------------------------------------------------------------- /data/AdjDataUser2gB0_transversal_0.08moving_average.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/AdjDataUser2gB0_transversal_0.08moving_average.mat -------------------------------------------------------------------------------- /data/brainweb/exA01_FID_brainweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/brainweb/exA01_FID_brainweb.py -------------------------------------------------------------------------------- /data/brainweb/generate_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/brainweb/generate_maps.py -------------------------------------------------------------------------------- /data/brainweb/solE01_FLASH_2D_brainweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/brainweb/solE01_FLASH_2D_brainweb.py -------------------------------------------------------------------------------- /data/low_field_phantom.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/low_field_phantom.mat -------------------------------------------------------------------------------- /data/numerical_brain_cropped.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/numerical_brain_cropped.mat -------------------------------------------------------------------------------- /data/out/flash pTx CP.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/out/flash pTx CP.seq -------------------------------------------------------------------------------- /data/out/flash pTx EP.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/out/flash pTx EP.seq -------------------------------------------------------------------------------- /data/out/flash pTx QM.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/out/flash pTx QM.seq -------------------------------------------------------------------------------- /data/out/flash.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/out/flash.seq -------------------------------------------------------------------------------- /data/phantom2D.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/phantom2D.mat -------------------------------------------------------------------------------- /data/phantom_1Tx_ptx.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/phantom_1Tx_ptx.pth -------------------------------------------------------------------------------- /data/subject05.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/data/subject05.npz -------------------------------------------------------------------------------- /dependency-licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/dependency-licenses.txt -------------------------------------------------------------------------------- /ex/exA00_phantom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exA00_phantom.py -------------------------------------------------------------------------------- /ex/exA01_FID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exA01_FID.py -------------------------------------------------------------------------------- /ex/exA02_SpinEcho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exA02_SpinEcho.py -------------------------------------------------------------------------------- /ex/exA03_gradient_echo_1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exA03_gradient_echo_1D.py -------------------------------------------------------------------------------- /ex/exA04_stimulated_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exA04_stimulated_echo.py -------------------------------------------------------------------------------- /ex/exA05_incoherent_echo_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exA05_incoherent_echo_train.py -------------------------------------------------------------------------------- /ex/exB01_gradient_echo_pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exB01_gradient_echo_pixel.py -------------------------------------------------------------------------------- /ex/exB02_gradient_echo_freq_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exB02_gradient_echo_freq_enc.py -------------------------------------------------------------------------------- /ex/exB03_gradient_echo_phase_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exB03_gradient_echo_phase_encoding.py -------------------------------------------------------------------------------- /ex/exB04_gradient_echo_freqphase_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exB04_gradient_echo_freqphase_2D.py -------------------------------------------------------------------------------- /ex/exB05_GRE_2D_fully_relaxed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exB05_GRE_2D_fully_relaxed.py -------------------------------------------------------------------------------- /ex/exB06_GRE_to_FLASH_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exB06_GRE_to_FLASH_2D.py -------------------------------------------------------------------------------- /ex/exB07_FLASH_2D_reordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exB07_FLASH_2D_reordering.py -------------------------------------------------------------------------------- /ex/exB08_FLASH_2D_MP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exB08_FLASH_2D_MP.py -------------------------------------------------------------------------------- /ex/exB09_GRE_EPI_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exB09_GRE_EPI_2D.py -------------------------------------------------------------------------------- /ex/exC01_spinecho_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exC01_spinecho_2D.py -------------------------------------------------------------------------------- /ex/exC02_spinecho_to_RARE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exC02_spinecho_to_RARE.py -------------------------------------------------------------------------------- /ex/exD01_bssfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exD01_bssfp.py -------------------------------------------------------------------------------- /ex/exE01_FLASH_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exE01_FLASH_2D.py -------------------------------------------------------------------------------- /ex/exF01_bSSFP_2D_radial_nufft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/exF01_bSSFP_2D_radial_nufft.py -------------------------------------------------------------------------------- /ex/ex_help01_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/ex_help01_python.py -------------------------------------------------------------------------------- /ex/ex_help02_pypulseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/ex_help02_pypulseq.py -------------------------------------------------------------------------------- /ex/ex_help03_fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/ex_help03_fft.py -------------------------------------------------------------------------------- /ex/ex_help04_permute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/ex_help04_permute.py -------------------------------------------------------------------------------- /ex/ex_help05_reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/ex_help05_reverse.py -------------------------------------------------------------------------------- /ex/ex_help06_kxy_wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/ex_help06_kxy_wave.py -------------------------------------------------------------------------------- /ex/info/exZ01_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/info/exZ01_.py -------------------------------------------------------------------------------- /ex/info/exZ01_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/info/exZ01_email.py -------------------------------------------------------------------------------- /ex/out/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/out/placeholder.txt -------------------------------------------------------------------------------- /ex/solA01_FID_multi_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solA01_FID_multi_echo.py -------------------------------------------------------------------------------- /ex/solA01_FID_single_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solA01_FID_single_echo.py -------------------------------------------------------------------------------- /ex/solA02_SpinEcho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solA02_SpinEcho.py -------------------------------------------------------------------------------- /ex/solA02_SpinEcho_multi_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solA02_SpinEcho_multi_echo.py -------------------------------------------------------------------------------- /ex/solA03_gradient_echo_1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solA03_gradient_echo_1D.py -------------------------------------------------------------------------------- /ex/solA03_gradient_echo_1D_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solA03_gradient_echo_1D_me.py -------------------------------------------------------------------------------- /ex/solB01_gradient_echo_pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solB01_gradient_echo_pixel.py -------------------------------------------------------------------------------- /ex/solB02_gradient_echo_freq_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solB02_gradient_echo_freq_enc.py -------------------------------------------------------------------------------- /ex/solB03_gradient_echo_phase_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solB03_gradient_echo_phase_encoding.py -------------------------------------------------------------------------------- /ex/solB04_gradient_echo_freqphase_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solB04_gradient_echo_freqphase_2D.py -------------------------------------------------------------------------------- /ex/solB05_clean_GRE_2D_fully_relaxed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solB05_clean_GRE_2D_fully_relaxed.py -------------------------------------------------------------------------------- /ex/solB05_clean_GRE_2D_fully_relaxed_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solB05_clean_GRE_2D_fully_relaxed_rotated.py -------------------------------------------------------------------------------- /ex/solB06_GRE_to_FLASH_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solB06_GRE_to_FLASH_2D.py -------------------------------------------------------------------------------- /ex/solB07_FLASH_2D_reordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solB07_FLASH_2D_reordering.py -------------------------------------------------------------------------------- /ex/solB08_FLASH_2D_MP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solB08_FLASH_2D_MP.py -------------------------------------------------------------------------------- /ex/solB09_GRE_EPI_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solB09_GRE_EPI_2D.py -------------------------------------------------------------------------------- /ex/solC01_SE_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solC01_SE_2D.py -------------------------------------------------------------------------------- /ex/solC02_SE_to_RARE_2D_no_spoilers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solC02_SE_to_RARE_2D_no_spoilers.py -------------------------------------------------------------------------------- /ex/solC02_SE_to_RARE_2D_with_spoilers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solC02_SE_to_RARE_2D_with_spoilers.py -------------------------------------------------------------------------------- /ex/solD01_bSSFP_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solD01_bSSFP_2D.py -------------------------------------------------------------------------------- /ex/solD02_bSSFP_rotatedFOV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solD02_bSSFP_rotatedFOV.py -------------------------------------------------------------------------------- /ex/solE01_FLASH_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solE01_FLASH_2D.py -------------------------------------------------------------------------------- /ex/solE02_RARE_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solE02_RARE_2D.py -------------------------------------------------------------------------------- /ex/solE03_stimulated_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solE03_stimulated_echo.py -------------------------------------------------------------------------------- /ex/solF01_bSSFP_2D_radial_nufft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solF01_bSSFP_2D_radial_nufft.py -------------------------------------------------------------------------------- /ex/solF01_bSSFP_2D_radial_torchkbnufft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solF01_bSSFP_2D_radial_torchkbnufft.py -------------------------------------------------------------------------------- /ex/solF02_bSSFP_2D_radial_CS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solF02_bSSFP_2D_radial_CS.py -------------------------------------------------------------------------------- /ex/solF03_simple_undersampled_CS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solF03_simple_undersampled_CS.py -------------------------------------------------------------------------------- /ex/solF04_bSSFP_2D_cartesian_CS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/solF04_bSSFP_2D_cartesian_CS.py -------------------------------------------------------------------------------- /ex/sol_help02_pypulseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/ex/sol_help02_pypulseq.py -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/release_notes.md -------------------------------------------------------------------------------- /run_all_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/run_all_examples.py -------------------------------------------------------------------------------- /script/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/Readme.md -------------------------------------------------------------------------------- /script/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/header.tex -------------------------------------------------------------------------------- /script/img/Fig_MRhardware_and_Bfields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/Fig_MRhardware_and_Bfields.png -------------------------------------------------------------------------------- /script/img/MRI_2DFT_SE_PulseSequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/MRI_2DFT_SE_PulseSequence.png -------------------------------------------------------------------------------- /script/img/SE_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/SE_run.png -------------------------------------------------------------------------------- /script/img/exA08.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/exA08.PNG -------------------------------------------------------------------------------- /script/img/exA08_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/exA08_2.PNG -------------------------------------------------------------------------------- /script/img/exA1_FID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/exA1_FID.png -------------------------------------------------------------------------------- /script/img/exA4_STE_3pulses_5echoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/exA4_STE_3pulses_5echoes.png -------------------------------------------------------------------------------- /script/img/exA5_incoherent_echoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/exA5_incoherent_echoes.png -------------------------------------------------------------------------------- /script/img/exA_FID_SE_GRE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/exA_FID_SE_GRE.png -------------------------------------------------------------------------------- /script/img/exB01_gradient_echo_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/exB01_gradient_echo_pixel.png -------------------------------------------------------------------------------- /script/img/exB08_FLASH_MP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/exB08_FLASH_MP.png -------------------------------------------------------------------------------- /script/img/ex_help02_pypulseq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/ex_help02_pypulseq.png -------------------------------------------------------------------------------- /script/img/seq_FLASH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/seq_FLASH.png -------------------------------------------------------------------------------- /script/img/seq_k_traj_GRE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/img/seq_k_traj_GRE.png -------------------------------------------------------------------------------- /script/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/main.tex -------------------------------------------------------------------------------- /script/script_MRTwinPulseq_3_0_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/script_MRTwinPulseq_3_0_1.pdf -------------------------------------------------------------------------------- /script/symmetric_rf_pulse_blocks.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/script/symmetric_rf_pulse_blocks.pptx -------------------------------------------------------------------------------- /utils/edutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzaiss/MRTwin_pulseq/HEAD/utils/edutils.py --------------------------------------------------------------------------------