├── .gitignore ├── AM_multiband_repo ├── Design_Multiband.m ├── LICENSE ├── MB_optimal_phase.m ├── Phase optimization │ ├── Phaseopt_fn.m │ ├── bmax_conj.mat │ └── bmax_wong.mat ├── README.md ├── Root flipping │ ├── dinf.m │ ├── flip2peak.m │ ├── flip2rf.m │ ├── flipZeros.m │ ├── flipZerosCS.m │ ├── fmp2.m │ ├── leja_fast.m │ ├── nrPb_fn.m │ ├── rf2ab_sas.m │ └── rootflip_fn.m ├── SB_SLR_cvxdesign_flip180_matchedexcitation.mat ├── Time shifting │ └── Timeshift_fn.m ├── b2amp.m ├── bin │ ├── fig1.png │ ├── fig2.png │ ├── fig5.png │ ├── fig8.png │ └── fig9.png ├── blochsim_CK.m └── islr.m ├── Figures ├── MBexample.png ├── PINSexample.png ├── SBexample.PNG ├── me_quad_MBexample.png ├── me_quad_MBgexample.png └── me_quad_SBexample.PNG ├── Phaseopt_fn_Nonopt.m ├── README.md ├── SlopeGradientZeropadRF2.m ├── cscatter.m ├── dinf.m ├── dz_MBverseGirf.m ├── dz_cvx.m ├── dz_cvx_old.m ├── dz_ls.m ├── dz_multiband_example.m ├── dz_singleband_example.m ├── idmxy.m ├── minTimeGradient_VERSE_girf.m ├── minimaxsmsphi.m ├── multiband_rf.m ├── singleband_rf.m ├── verse-mb_repo ├── .gitignore ├── @complex3d │ ├── abs.m │ ├── complex3d.m │ ├── ctranspose.m │ ├── cumtrapz.m │ ├── diff.m │ ├── end.m │ ├── get.m │ ├── length.m │ ├── minus.m │ ├── mrdivide.m │ ├── mtimes.m │ ├── plus.m │ ├── ppval.m │ ├── rdivide.m │ ├── set.m │ ├── size.m │ ├── spline.m │ ├── subsasgn.m │ ├── subsref.m │ └── times.m ├── Design_verse_Multiband.m ├── LICENSE ├── PINS │ ├── Time_Optimal_Multipins.m │ ├── dotrap.m │ ├── dz_Multipins.m │ ├── dz_pins_arbSB.m │ └── verse_arbg.m ├── README.md ├── bin │ ├── SB_SLR_cvxdesign_flip180_quad_Mar27.mat │ ├── empty.txt │ ├── h1_GIRF_20140729.mat │ └── h2_GIRF_20170901.mat ├── dz_MBverse.m ├── gradient_distort_FT.m ├── gradient_distort_GIRF.m └── minTimeGradient_VERSE_girf.m └── verse_arbg.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/.gitignore -------------------------------------------------------------------------------- /AM_multiband_repo/Design_Multiband.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Design_Multiband.m -------------------------------------------------------------------------------- /AM_multiband_repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/LICENSE -------------------------------------------------------------------------------- /AM_multiband_repo/MB_optimal_phase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/MB_optimal_phase.m -------------------------------------------------------------------------------- /AM_multiband_repo/Phase optimization/Phaseopt_fn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Phase optimization/Phaseopt_fn.m -------------------------------------------------------------------------------- /AM_multiband_repo/Phase optimization/bmax_conj.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Phase optimization/bmax_conj.mat -------------------------------------------------------------------------------- /AM_multiband_repo/Phase optimization/bmax_wong.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Phase optimization/bmax_wong.mat -------------------------------------------------------------------------------- /AM_multiband_repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/README.md -------------------------------------------------------------------------------- /AM_multiband_repo/Root flipping/dinf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Root flipping/dinf.m -------------------------------------------------------------------------------- /AM_multiband_repo/Root flipping/flip2peak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Root flipping/flip2peak.m -------------------------------------------------------------------------------- /AM_multiband_repo/Root flipping/flip2rf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Root flipping/flip2rf.m -------------------------------------------------------------------------------- /AM_multiband_repo/Root flipping/flipZeros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Root flipping/flipZeros.m -------------------------------------------------------------------------------- /AM_multiband_repo/Root flipping/flipZerosCS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Root flipping/flipZerosCS.m -------------------------------------------------------------------------------- /AM_multiband_repo/Root flipping/fmp2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Root flipping/fmp2.m -------------------------------------------------------------------------------- /AM_multiband_repo/Root flipping/leja_fast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Root flipping/leja_fast.m -------------------------------------------------------------------------------- /AM_multiband_repo/Root flipping/nrPb_fn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Root flipping/nrPb_fn.m -------------------------------------------------------------------------------- /AM_multiband_repo/Root flipping/rf2ab_sas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Root flipping/rf2ab_sas.m -------------------------------------------------------------------------------- /AM_multiband_repo/Root flipping/rootflip_fn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Root flipping/rootflip_fn.m -------------------------------------------------------------------------------- /AM_multiband_repo/SB_SLR_cvxdesign_flip180_matchedexcitation.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/SB_SLR_cvxdesign_flip180_matchedexcitation.mat -------------------------------------------------------------------------------- /AM_multiband_repo/Time shifting/Timeshift_fn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/Time shifting/Timeshift_fn.m -------------------------------------------------------------------------------- /AM_multiband_repo/b2amp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/b2amp.m -------------------------------------------------------------------------------- /AM_multiband_repo/bin/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/bin/fig1.png -------------------------------------------------------------------------------- /AM_multiband_repo/bin/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/bin/fig2.png -------------------------------------------------------------------------------- /AM_multiband_repo/bin/fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/bin/fig5.png -------------------------------------------------------------------------------- /AM_multiband_repo/bin/fig8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/bin/fig8.png -------------------------------------------------------------------------------- /AM_multiband_repo/bin/fig9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/bin/fig9.png -------------------------------------------------------------------------------- /AM_multiband_repo/blochsim_CK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/blochsim_CK.m -------------------------------------------------------------------------------- /AM_multiband_repo/islr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/AM_multiband_repo/islr.m -------------------------------------------------------------------------------- /Figures/MBexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/Figures/MBexample.png -------------------------------------------------------------------------------- /Figures/PINSexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/Figures/PINSexample.png -------------------------------------------------------------------------------- /Figures/SBexample.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/Figures/SBexample.PNG -------------------------------------------------------------------------------- /Figures/me_quad_MBexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/Figures/me_quad_MBexample.png -------------------------------------------------------------------------------- /Figures/me_quad_MBgexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/Figures/me_quad_MBgexample.png -------------------------------------------------------------------------------- /Figures/me_quad_SBexample.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/Figures/me_quad_SBexample.PNG -------------------------------------------------------------------------------- /Phaseopt_fn_Nonopt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/Phaseopt_fn_Nonopt.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/README.md -------------------------------------------------------------------------------- /SlopeGradientZeropadRF2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/SlopeGradientZeropadRF2.m -------------------------------------------------------------------------------- /cscatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/cscatter.m -------------------------------------------------------------------------------- /dinf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/dinf.m -------------------------------------------------------------------------------- /dz_MBverseGirf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/dz_MBverseGirf.m -------------------------------------------------------------------------------- /dz_cvx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/dz_cvx.m -------------------------------------------------------------------------------- /dz_cvx_old.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/dz_cvx_old.m -------------------------------------------------------------------------------- /dz_ls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/dz_ls.m -------------------------------------------------------------------------------- /dz_multiband_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/dz_multiband_example.m -------------------------------------------------------------------------------- /dz_singleband_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/dz_singleband_example.m -------------------------------------------------------------------------------- /idmxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/idmxy.m -------------------------------------------------------------------------------- /minTimeGradient_VERSE_girf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/minTimeGradient_VERSE_girf.m -------------------------------------------------------------------------------- /minimaxsmsphi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/minimaxsmsphi.m -------------------------------------------------------------------------------- /multiband_rf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/multiband_rf.m -------------------------------------------------------------------------------- /singleband_rf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/singleband_rf.m -------------------------------------------------------------------------------- /verse-mb_repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/.gitignore -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/abs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/abs.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/complex3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/complex3d.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/ctranspose.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/ctranspose.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/cumtrapz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/cumtrapz.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/diff.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/end.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/end.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/get.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/get.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/length.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/length.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/minus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/minus.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/mrdivide.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/mrdivide.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/mtimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/mtimes.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/plus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/plus.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/ppval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/ppval.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/rdivide.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/rdivide.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/set.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/set.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/size.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/spline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/spline.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/subsasgn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/subsasgn.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/subsref.m -------------------------------------------------------------------------------- /verse-mb_repo/@complex3d/times.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/@complex3d/times.m -------------------------------------------------------------------------------- /verse-mb_repo/Design_verse_Multiband.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/Design_verse_Multiband.m -------------------------------------------------------------------------------- /verse-mb_repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/LICENSE -------------------------------------------------------------------------------- /verse-mb_repo/PINS/Time_Optimal_Multipins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/PINS/Time_Optimal_Multipins.m -------------------------------------------------------------------------------- /verse-mb_repo/PINS/dotrap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/PINS/dotrap.m -------------------------------------------------------------------------------- /verse-mb_repo/PINS/dz_Multipins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/PINS/dz_Multipins.m -------------------------------------------------------------------------------- /verse-mb_repo/PINS/dz_pins_arbSB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/PINS/dz_pins_arbSB.m -------------------------------------------------------------------------------- /verse-mb_repo/PINS/verse_arbg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/PINS/verse_arbg.m -------------------------------------------------------------------------------- /verse-mb_repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/README.md -------------------------------------------------------------------------------- /verse-mb_repo/bin/SB_SLR_cvxdesign_flip180_quad_Mar27.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/bin/SB_SLR_cvxdesign_flip180_quad_Mar27.mat -------------------------------------------------------------------------------- /verse-mb_repo/bin/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verse-mb_repo/bin/h1_GIRF_20140729.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/bin/h1_GIRF_20140729.mat -------------------------------------------------------------------------------- /verse-mb_repo/bin/h2_GIRF_20170901.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/bin/h2_GIRF_20170901.mat -------------------------------------------------------------------------------- /verse-mb_repo/dz_MBverse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/dz_MBverse.m -------------------------------------------------------------------------------- /verse-mb_repo/gradient_distort_FT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/gradient_distort_FT.m -------------------------------------------------------------------------------- /verse-mb_repo/gradient_distort_GIRF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/gradient_distort_GIRF.m -------------------------------------------------------------------------------- /verse-mb_repo/minTimeGradient_VERSE_girf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse-mb_repo/minTimeGradient_VERSE_girf.m -------------------------------------------------------------------------------- /verse_arbg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mriphysics/Multiband-RF/HEAD/verse_arbg.m --------------------------------------------------------------------------------