Legacy MNE-C noise covariance container preserved for cross-toolchain compatibility. More...
#include "mne_global.h"#include <Eigen/Core>#include <memory>#include <QSharedPointer>#include <QStringList>

Go to the source code of this file.
Classes | |
| class | MNELIB::MNECovMatrix |
| Covariance matrix storage. More... | |
Namespaces | |
| namespace | FIFFLIB |
| FIFF file I/O, in-memory data structures and high-level readers/writers. | |
| namespace | MNELIB |
| Core MNE data structures (source spaces, source estimates, hemispheres). | |
Macros | |
| #define | MNE_COV_CH_UNKNOWN -1 |
| #define | MNE_COV_CH_MEG_MAG 0 |
| #define | MNE_COV_CH_MEG_GRAD 1 |
| #define | MNE_COV_CH_EEG 2 |
Legacy MNE-C noise covariance container preserved for cross-toolchain compatibility.
SPDX-License-Identifier: BSD-3-Clause Copyright (c) 2026 MNE-CPP Authors
MNELIB::MNECovMatrix mirrors the mneCovMatrixRec struct of the original MNE C tooling: a dense or diagonal noise covariance kept as a vector plus eigen-decomposition, used internally by routines ported verbatim from mne_inverse_operator. New code should prefer FIFFLIB::FiffCov; this class exists so legacy algorithms can be translated without rewriting their algebra.
Definition in file mne_cov_matrix.h.
| #define MNE_COV_CH_EEG 2 |
EEG [V].
Definition at line 54 of file mne_cov_matrix.h.
| #define MNE_COV_CH_MEG_GRAD 1 |
Planar gradiometer [T/m].
Definition at line 53 of file mne_cov_matrix.h.
| #define MNE_COV_CH_MEG_MAG 0 |
Axial gradiometer or magnetometer [T].
Definition at line 52 of file mne_cov_matrix.h.
| #define MNE_COV_CH_UNKNOWN -1 |
Channel-type classification constants for the ch_class field in MNECovMatrix. Unknown channel type.
Definition at line 51 of file mne_cov_matrix.h.