v2.0.0
Loading...
Searching...
No Matches
inv_mxne.h
Go to the documentation of this file.
1//=============================================================================================================
23
24#ifndef INV_MXNE_H
25#define INV_MXNE_H
26
27//=============================================================================================================
28// INCLUDES
29//=============================================================================================================
30
31#include "../inv_global.h"
33
34//=============================================================================================================
35// EIGEN INCLUDES
36//=============================================================================================================
37
38#include <Eigen/Core>
39#include <Eigen/Dense>
40
41//=============================================================================================================
42// QT INCLUDES
43//=============================================================================================================
44
45#include <QVector>
46
47//=============================================================================================================
48// DEFINE NAMESPACE INVLIB
49//=============================================================================================================
50
51namespace INVLIB
52{
53
54//=============================================================================================================
64
65//=============================================================================================================
75{
76public:
77 //=========================================================================================================
90 const Eigen::MatrixXd& matGain,
91 const Eigen::MatrixXd& matData,
92 double alpha,
93 int nIterations = 50,
94 double tolerance = 1e-6);
95};
96
97} // namespace INVLIB
98
99#endif // INV_MXNE_H
InvSourceEstimate value type — central source-space data container produced by every INVLIB inverse s...
INVLIB library export/import macros, build-info accessors, and namespace docstring for the inverse-so...
#define INVSHARED_EXPORT
Definition inv_global.h:38
Inverse source estimation (MNE, dSPM, sLORETA, dipole fitting).
Source-space inverse-solution container with dense grid plus optional focal-dipole,...
QVector< int > activeVertices
Definition inv_mxne.h:60
InvSourceEstimate stc
Definition inv_mxne.h:59
MxNE sparse inverse solver.
Definition inv_mxne.h:75
static InvMxneResult compute(const Eigen::MatrixXd &matGain, const Eigen::MatrixXd &matData, double alpha, int nIterations=50, double tolerance=1e-6)
Definition inv_mxne.cpp:45