InvMinimumNorm
Namespace: INVERSELIB · Library: Inverse Library
mne.minimum_norm.apply_inverse in MNE-Python.
#include <inv/inv_minimum_norm.h>
class INVLIB::InvMinimumNorm
Minimum norm estimation algorithm.
Computes L2 minimum-norm, dSPM, or sLORETA source estimates from MEG/EEG data using a pre-computed inverse operator.
References: Hamalainen & Ilmoniemi, Med. & Biol. Eng. & Comput. 32, 35-42, 1994.
Dale et al., Neuron 26, 55-67, 2000 (dSPM).
Pascual-Marqui, Methods Find. Exp. Clin. Pharmacol. 24D, 5-12, 2002 (sLORETA).
Minimum norm estimation
Public Methods
InvMinimumNorm(p_inverseOperator, lambda, method)
Constructs minimum norm inverse algorithm.
Parameters:
-
p_inverseOperator : const MNEInverseOperator & The inverse operator.
-
lambda : float The regularization factor.
-
method : const QString Use mininum norm, dSPM or sLORETA. ("MNE" | "dSPM" | "sLORETA").
Returns:
- the prepared inverse operator.
InvMinimumNorm(p_inverseOperator, lambda, dSPM, sLORETA)
Constructs minimum norm inverse algorithm.
Parameters:
-
p_inverseOperator : const MNEInverseOperator & The inverse operator.
-
lambda : float The regularization factor.
-
dSPM : bool Compute the noise-normalization factors for dSPM?.
-
sLORETA : bool Compute the noise-normalization factors for sLORETA?.
Returns:
- the prepared inverse operator.
~InvMinimumNorm()
calculateInverse(p_fiffEvoked, pick_normal)
Computes a L2-norm inverse solution Actual code using these principles might be different because the inverse operator is often reused across data sets.
Parameters:
-
p_fiffEvoked : const FiffEvoked & Evoked data.
-
pick_normal : bool If True, rather than pooling the orientations by taking the norm, only the. radial component is kept. This is only applied when working with loose orientations.
Returns:
- InvSourceEstimate — the calculated source estimation.