v2.0.0
Loading...
Searching...
No Matches
inv_mxne.h
Go to the documentation of this file.
1//=============================================================================================================
34
35#ifndef INV_MXNE_H
36#define INV_MXNE_H
37
38//=============================================================================================================
39// INCLUDES
40//=============================================================================================================
41
42#include "../inv_global.h"
44
45//=============================================================================================================
46// EIGEN INCLUDES
47//=============================================================================================================
48
49#include <Eigen/Core>
50#include <Eigen/Dense>
51
52//=============================================================================================================
53// QT INCLUDES
54//=============================================================================================================
55
56#include <QVector>
57
58//=============================================================================================================
59// DEFINE NAMESPACE INVLIB
60//=============================================================================================================
61
62namespace INVLIB
63{
64
65//=============================================================================================================
75
76//=============================================================================================================
86{
87public:
88 //=========================================================================================================
100 static InvMxneResult compute(
101 const Eigen::MatrixXd& matGain,
102 const Eigen::MatrixXd& matData,
103 double alpha,
104 int nIterations = 50,
105 double tolerance = 1e-6);
106};
107
108} // namespace INVLIB
109
110#endif // INV_MXNE_H
InvSourceEstimate class declaration.
inverse library export/import macros.
#define INVSHARED_EXPORT
Definition inv_global.h:52
Inverse source estimation (MNE, dSPM, sLORETA, dipole fitting).
QVector< int > activeVertices
Definition inv_mxne.h:71
InvSourceEstimate stc
Definition inv_mxne.h:70
MxNE sparse inverse solver.
Definition inv_mxne.h:86
static InvMxneResult compute(const Eigen::MatrixXd &matGain, const Eigen::MatrixXd &matData, double alpha, int nIterations=50, double tolerance=1e-6)
Definition inv_mxne.cpp:59