v2.0.0
Loading...
Searching...
No Matches
inv_connectivity.h
Go to the documentation of this file.
1//=============================================================================================================
20
21#ifndef INV_CONNECTIVITY_H
22#define INV_CONNECTIVITY_H
23
24//=============================================================================================================
25// INCLUDES
26//=============================================================================================================
27
28#include <string>
29
30//=============================================================================================================
31// EIGEN INCLUDES
32//=============================================================================================================
33
34#include <Eigen/Core>
35
36//=============================================================================================================
37// DEFINE NAMESPACE INVLIB
38//=============================================================================================================
39
40namespace INVLIB
41{
42
43//=============================================================================================================
56{
57 Eigen::MatrixXd matrix;
58 std::string measure;
59 bool directed;
60 float fmin;
61 float fmax;
62 float tmin;
63 float tmax;
64
66 : directed(false)
67 , fmin(0.0f)
68 , fmax(0.0f)
69 , tmin(0.0f)
70 , tmax(0.0f)
71 {
72 }
73};
74
75} // NAMESPACE INVLIB
76
77#endif // INV_CONNECTIVITY_H
Inverse source estimation (MNE, dSPM, sLORETA, dipole fitting).