v2.0.0
Loading...
Searching...
No Matches
inv_connectivity.h
Go to the documentation of this file.
1//=============================================================================================================
34
35#ifndef INV_CONNECTIVITY_H
36#define INV_CONNECTIVITY_H
37
38//=============================================================================================================
39// INCLUDES
40//=============================================================================================================
41
42#include <string>
43
44//=============================================================================================================
45// EIGEN INCLUDES
46//=============================================================================================================
47
48#include <Eigen/Core>
49
50//=============================================================================================================
51// DEFINE NAMESPACE INVLIB
52//=============================================================================================================
53
54namespace INVLIB
55{
56
57//=============================================================================================================
70{
71 Eigen::MatrixXd matrix;
72 std::string measure;
73 bool directed;
74 float fmin;
75 float fmax;
76 float tmin;
77 float tmax;
78
80 : directed(false)
81 , fmin(0.0f)
82 , fmax(0.0f)
83 , tmin(0.0f)
84 , tmax(0.0f)
85 {
86 }
87};
88
89} // NAMESPACE INVLIB
90
91#endif // INV_CONNECTIVITY_H
Inverse source estimation (MNE, dSPM, sLORETA, dipole fitting).