Cortical map interpolation utilities. More...
#include <mne_cortical_map.h>
Public Member Functions | |
| MNECorticalMap ()=delete | |
Static Public Member Functions | |
| static Eigen::MatrixXd | makeCorticalMap (const MNEForwardSolution &fwd, const MNEInverseOperator &inv, const FIFFLIB::FiffInfo &info) |
Cortical map interpolation utilities.
Cortical map interpolation: creates a mapping matrix that transforms sensor-level data to source space using forward and inverse operators.
Definition at line 81 of file mne_cortical_map.h.
|
delete |
|
static |
Create a cortical mapping matrix that transforms sensor-level data to source space.
The mapping is computed as: M = inv_kernel * fwd_gain^T
where inv_kernel is the inverse operator kernel and fwd_gain is the forward solution gain matrix.
| [in] | fwd | The forward solution containing the gain matrix. |
| [in] | inv | The inverse operator (must have been prepared / have a kernel). |
| [in] | info | The measurement info for channel selection. |
Definition at line 64 of file mne_cortical_map.cpp.