├── .gitignore ├── .pylintrc ├── LICENSE ├── README.rst ├── make_release.sh ├── phantominator ├── __init__.py ├── ct_shepp_logan.py ├── dynamic.py ├── examples │ ├── __init__.py │ ├── dynamic.py │ ├── gach_figs.py │ ├── modify_parameters.py │ ├── mr_shepp_logan.py │ ├── radial_coil_sens.py │ └── shepp_logan.py ├── kspace.py ├── mr_shepp_logan.py ├── sens_coeffs.py ├── shepp_logan.py └── traj.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dist/ 3 | build/ 4 | phantominator.egg-info/ 5 | .idea/ 6 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/README.rst -------------------------------------------------------------------------------- /make_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/make_release.sh -------------------------------------------------------------------------------- /phantominator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/__init__.py -------------------------------------------------------------------------------- /phantominator/ct_shepp_logan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/ct_shepp_logan.py -------------------------------------------------------------------------------- /phantominator/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/dynamic.py -------------------------------------------------------------------------------- /phantominator/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phantominator/examples/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/examples/dynamic.py -------------------------------------------------------------------------------- /phantominator/examples/gach_figs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/examples/gach_figs.py -------------------------------------------------------------------------------- /phantominator/examples/modify_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/examples/modify_parameters.py -------------------------------------------------------------------------------- /phantominator/examples/mr_shepp_logan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/examples/mr_shepp_logan.py -------------------------------------------------------------------------------- /phantominator/examples/radial_coil_sens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/examples/radial_coil_sens.py -------------------------------------------------------------------------------- /phantominator/examples/shepp_logan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/examples/shepp_logan.py -------------------------------------------------------------------------------- /phantominator/kspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/kspace.py -------------------------------------------------------------------------------- /phantominator/mr_shepp_logan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/mr_shepp_logan.py -------------------------------------------------------------------------------- /phantominator/sens_coeffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/sens_coeffs.py -------------------------------------------------------------------------------- /phantominator/shepp_logan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/shepp_logan.py -------------------------------------------------------------------------------- /phantominator/traj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/phantominator/traj.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckib2/phantominator/HEAD/setup.py --------------------------------------------------------------------------------