-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from mVenetos97/mrsimulator_max
Post Simulation signal processing
- Loading branch information
Showing
37 changed files
with
1,763 additions
and
669 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
[flake8] | ||
ignore = E402 C901 E501 E265 | ||
ignore = E402 | ||
exclude = .eggs, *.egg,build, src/mrsimulator/__init__.py | ||
filename = *.pyx, *py | ||
max-line-length = 88 | ||
max-complexity = 10 | ||
max-complexity = 12 | ||
select = C,E,F,W,N8 | ||
count = True | ||
statistics = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
|
||
Documentation | ||
------------- | ||
|
||
.. currentmodule:: mrsimulator.signal_processing | ||
|
||
.. autoclass:: Scale | ||
.. autoclass:: IFFT | ||
.. autoclass:: FFT | ||
|
||
.. currentmodule:: mrsimulator.signal_processing.apodization | ||
|
||
.. autoclass:: Gaussian | ||
.. autoclass:: Exponential |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
.. _operations_api: | ||
|
||
Operations | ||
========== | ||
|
||
Generic operations | ||
------------------ | ||
|
||
.. currentmodule:: mrsimulator.signal_processing | ||
|
||
Import the module as | ||
|
||
.. doctest:: | ||
|
||
>>> import mrsimulator.signal_processing as sp | ||
|
||
.. rubric:: Operation Summary | ||
|
||
The following list of operations apply to **all dependent variables** within the | ||
simulation data object. | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
|
||
~Scale | ||
~IFFT | ||
~FFT | ||
|
||
Apodization | ||
----------- | ||
|
||
.. currentmodule:: mrsimulator.signal_processing.apodization | ||
|
||
Import the module as | ||
|
||
.. doctest:: | ||
|
||
>>> import mrsimulator.signal_processing.apodization as apo | ||
|
||
.. rubric:: Operation Summary | ||
|
||
The following list of operations apply to **selected dependent variables** within | ||
the simulation data object. | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
|
||
~Gaussian | ||
~Exponential |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.. _signal_processing_api: | ||
|
||
Signal Processing | ||
================= | ||
|
||
.. currentmodule:: mrsimulator.signal_processing | ||
|
||
.. autoclass:: SignalProcessor | ||
:show-inheritance: | ||
|
||
.. rubric:: Method Documentation | ||
|
||
.. automethod:: parse_dict_with_units | ||
.. automethod:: to_dict_with_units | ||
.. automethod:: apply_operations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,3 @@ Simulator | |
.. automethod:: run | ||
.. automethod:: save | ||
.. automethod:: load | ||
.. automethod:: apodize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.