1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
.. _implementation:
Algorithms and other implementation details
===========================================
This page describes some of the technical details of MNE-Python implementation.
.. contents:: Page contents
:local:
:depth: 1
.. _units:
Internal representation (units)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/units.rst
:start-after: units-begin-content
.. _precision:
Floating-point precision
^^^^^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/precision.rst
:start-after: precision-begin-content
.. _channel-types:
Supported channel types
^^^^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/channel_types.rst
:start-after: channel-types-begin-content
.. _data-formats:
Supported data formats
^^^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/data_formats.rst
:start-after: data-formats-begin-content
.. _dig-formats:
Supported formats for digitized 3D locations
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/dig_formats.rst
:start-after: dig-formats-begin-content
.. _memory:
Memory-efficient I/O
^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/memory.rst
:start-after: memory-begin-content
.. _channel-interpolation:
Bad channel repair via interpolation
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/channel_interpolation.rst
:start-after: channel-interpolation-begin-content
:end-before: channel-interpolation-end-content
.. _maxwell:
Maxwell filtering
^^^^^^^^^^^^^^^^^
MNE-Python's implementation of Maxwell filtering is described in the
:ref:`tut-artifact-sss` tutorial.
.. _ssp-method:
Signal-Space Projection (SSP)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/ssp.rst
:start-after: ssp-begin-content
.. _bem-model:
The Boundary Element Model (BEM)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/bem_model.rst
:start-after: bem-begin-content
.. _ch_forward:
The forward solution
^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/forward.rst
:start-after: forward-begin-content
.. _ch_mne:
The minimum-norm current estimates
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/inverse.rst
:start-after: inverse-begin-content
:end-before: inverse-end-content
.. _ch_morph:
Morphing and averaging source estimates
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. include:: ../_includes/morph.rst
:start-after: morph-begin-content
References
^^^^^^^^^^
.. [1] Perrin, F., Pernier, J., Bertrand, O. and Echallier, JF. (1989).
Spherical splines for scalp potential and current density mapping.
*Electroencephalography Clinical Neurophysiology* 72(2), 184-187.
doi: 10.1016/0013-4694(89)90180-6
.. [2] Dale AM, Fischl B, Sereno MI (1999). "Cortical surface-based analysis.
I. Segmentation and surface reconstruction." *Neuroimage* 9, 179-94.
doi: 10.1006/nimg.1998.0395
|