Estimate the SNR as a function of time for evoked data.
Evoked
Evoked instance.
InverseOperator
The inverse operator.
str
| int
| None
Control verbosity of the logging output. If None
, use the default
verbosity level. See the logging documentation and
mne.verbose()
for details. Should only be passed as a keyword
argument.
Notes
snr_est
is estimated by using different amounts of inverse
regularization and checking the mismatch between predicted and
measured whitened data.
In more detail, given our whitened inverse obtained from SVD:
The values in the diagonal matrix \(\Gamma\) are expressed in terms of the chosen regularization \(\lambda^2 \sim 1/\rm{SNR}^2\) and singular values \(\lambda_k\) as:
We also know that our predicted data is given by:
And thus our predicted whitened data is just:
Where \(\Pi\) is diagonal with entries entries:
If we use no regularization, note that \(\Pi\) is just the identity matrix. Here we test the squared magnitude of the difference between unregularized solution and regularized solutions, choosing the biggest regularization that achieves a \(\chi^2\)-test significance of 0.001.
New in version 0.9.0.