├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── examples └── cardiac_layer_phantom.ipynb ├── pyfield ├── __init__.py ├── core │ ├── Mat_field.mexa64 │ ├── Mat_field.mexw64 │ ├── __init__.py │ ├── calc_h.m │ ├── calc_hhp.m │ ├── calc_hp.m │ ├── calc_scat.m │ ├── calc_scat_all.m │ ├── calc_scat_multi.m │ ├── ele_apodization.m │ ├── ele_delay.m │ ├── ele_waveform.m │ ├── field_debug.m │ ├── field_end.m │ ├── field_guide.m │ ├── field_info.m │ ├── field_init.m │ ├── field_logo.m │ ├── pyfield.py │ ├── set_field.m │ ├── set_sampling.m │ ├── users_guide.pdf │ ├── xdc_2d_array.m │ ├── xdc_apodization.m │ ├── xdc_baffle.m │ ├── xdc_center_focus.m │ ├── xdc_concave.m │ ├── xdc_convert.m │ ├── xdc_convex_array.m │ ├── xdc_convex_focused_array.m │ ├── xdc_convex_focused_multirow.m │ ├── xdc_dynamic_focus.m │ ├── xdc_excitation.m │ ├── xdc_focus.m │ ├── xdc_focus_times.m │ ├── xdc_focused_array.m │ ├── xdc_focused_multirow.m │ ├── xdc_free.m │ ├── xdc_get.m │ ├── xdc_impulse.m │ ├── xdc_line_convert.m │ ├── xdc_linear_array.m │ ├── xdc_linear_multirow.m │ ├── xdc_lines.m │ ├── xdc_piston.m │ ├── xdc_quantization.m │ ├── xdc_rectangles.m │ ├── xdc_show.m │ ├── xdc_times_focus.m │ └── xdc_triangles.m ├── tests │ ├── __init__.py │ └── test_pyfield.py ├── tissue.py └── util.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/README.md -------------------------------------------------------------------------------- /examples/cardiac_layer_phantom.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/examples/cardiac_layer_phantom.ipynb -------------------------------------------------------------------------------- /pyfield/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/__init__.py -------------------------------------------------------------------------------- /pyfield/core/Mat_field.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/Mat_field.mexa64 -------------------------------------------------------------------------------- /pyfield/core/Mat_field.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/Mat_field.mexw64 -------------------------------------------------------------------------------- /pyfield/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/__init__.py -------------------------------------------------------------------------------- /pyfield/core/calc_h.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/calc_h.m -------------------------------------------------------------------------------- /pyfield/core/calc_hhp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/calc_hhp.m -------------------------------------------------------------------------------- /pyfield/core/calc_hp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/calc_hp.m -------------------------------------------------------------------------------- /pyfield/core/calc_scat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/calc_scat.m -------------------------------------------------------------------------------- /pyfield/core/calc_scat_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/calc_scat_all.m -------------------------------------------------------------------------------- /pyfield/core/calc_scat_multi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/calc_scat_multi.m -------------------------------------------------------------------------------- /pyfield/core/ele_apodization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/ele_apodization.m -------------------------------------------------------------------------------- /pyfield/core/ele_delay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/ele_delay.m -------------------------------------------------------------------------------- /pyfield/core/ele_waveform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/ele_waveform.m -------------------------------------------------------------------------------- /pyfield/core/field_debug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/field_debug.m -------------------------------------------------------------------------------- /pyfield/core/field_end.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/field_end.m -------------------------------------------------------------------------------- /pyfield/core/field_guide.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/field_guide.m -------------------------------------------------------------------------------- /pyfield/core/field_info.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/field_info.m -------------------------------------------------------------------------------- /pyfield/core/field_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/field_init.m -------------------------------------------------------------------------------- /pyfield/core/field_logo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/field_logo.m -------------------------------------------------------------------------------- /pyfield/core/pyfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/pyfield.py -------------------------------------------------------------------------------- /pyfield/core/set_field.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/set_field.m -------------------------------------------------------------------------------- /pyfield/core/set_sampling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/set_sampling.m -------------------------------------------------------------------------------- /pyfield/core/users_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/users_guide.pdf -------------------------------------------------------------------------------- /pyfield/core/xdc_2d_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_2d_array.m -------------------------------------------------------------------------------- /pyfield/core/xdc_apodization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_apodization.m -------------------------------------------------------------------------------- /pyfield/core/xdc_baffle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_baffle.m -------------------------------------------------------------------------------- /pyfield/core/xdc_center_focus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_center_focus.m -------------------------------------------------------------------------------- /pyfield/core/xdc_concave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_concave.m -------------------------------------------------------------------------------- /pyfield/core/xdc_convert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_convert.m -------------------------------------------------------------------------------- /pyfield/core/xdc_convex_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_convex_array.m -------------------------------------------------------------------------------- /pyfield/core/xdc_convex_focused_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_convex_focused_array.m -------------------------------------------------------------------------------- /pyfield/core/xdc_convex_focused_multirow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_convex_focused_multirow.m -------------------------------------------------------------------------------- /pyfield/core/xdc_dynamic_focus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_dynamic_focus.m -------------------------------------------------------------------------------- /pyfield/core/xdc_excitation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_excitation.m -------------------------------------------------------------------------------- /pyfield/core/xdc_focus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_focus.m -------------------------------------------------------------------------------- /pyfield/core/xdc_focus_times.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_focus_times.m -------------------------------------------------------------------------------- /pyfield/core/xdc_focused_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_focused_array.m -------------------------------------------------------------------------------- /pyfield/core/xdc_focused_multirow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_focused_multirow.m -------------------------------------------------------------------------------- /pyfield/core/xdc_free.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_free.m -------------------------------------------------------------------------------- /pyfield/core/xdc_get.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_get.m -------------------------------------------------------------------------------- /pyfield/core/xdc_impulse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_impulse.m -------------------------------------------------------------------------------- /pyfield/core/xdc_line_convert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_line_convert.m -------------------------------------------------------------------------------- /pyfield/core/xdc_linear_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_linear_array.m -------------------------------------------------------------------------------- /pyfield/core/xdc_linear_multirow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_linear_multirow.m -------------------------------------------------------------------------------- /pyfield/core/xdc_lines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_lines.m -------------------------------------------------------------------------------- /pyfield/core/xdc_piston.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_piston.m -------------------------------------------------------------------------------- /pyfield/core/xdc_quantization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_quantization.m -------------------------------------------------------------------------------- /pyfield/core/xdc_rectangles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_rectangles.m -------------------------------------------------------------------------------- /pyfield/core/xdc_show.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_show.m -------------------------------------------------------------------------------- /pyfield/core/xdc_times_focus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_times_focus.m -------------------------------------------------------------------------------- /pyfield/core/xdc_triangles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/core/xdc_triangles.m -------------------------------------------------------------------------------- /pyfield/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyfield/tests/test_pyfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/tests/test_pyfield.py -------------------------------------------------------------------------------- /pyfield/tissue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/tissue.py -------------------------------------------------------------------------------- /pyfield/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/pyfield/util.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdshieh/pyfield/HEAD/setup.py --------------------------------------------------------------------------------