MNE-CPP
0.1.9
A Framework for Electrophysiology
src
libraries
mne
mne_corsourceestimate.cpp
Go to the documentation of this file.
1
//=============================================================================================================
37
//=============================================================================================================
38
// INCLUDES
39
//=============================================================================================================
40
41
#include "
mne_corsourceestimate.h
"
42
43
#include <QFile>
44
#include <QDataStream>
45
#include <QSharedPointer>
46
47
//=============================================================================================================
48
// USED NAMESPACES
49
//=============================================================================================================
50
51
using namespace
MNELIB;
52
using namespace
Eigen;
53
54
//=============================================================================================================
55
// DEFINE MEMBER METHODS
56
//=============================================================================================================
57
58
MNECorSourceEstimate::MNECorSourceEstimate
()
59
:
MNESourceEstimate
()
60
{
61
}
62
63
//=============================================================================================================
64
65
MNECorSourceEstimate::MNECorSourceEstimate
(
const
MatrixXd &p_sol,
const
VectorXi &p_vertices,
float
p_tmin,
float
p_tstep)
66
:
MNESourceEstimate
(p_sol, p_vertices, p_tmin, p_tstep)
67
{
68
}
69
70
//=============================================================================================================
71
72
MNECorSourceEstimate::MNECorSourceEstimate
(
const
MNECorSourceEstimate
& p_SourceEstimate)
73
:
MNESourceEstimate
(p_SourceEstimate)
74
{
75
}
76
77
//=============================================================================================================
78
79
MNECorSourceEstimate::MNECorSourceEstimate
(QIODevice &p_IODevice)
80
:
MNESourceEstimate
(p_IODevice)
81
{
82
}
83
84
//=============================================================================================================
85
86
void
MNECorSourceEstimate::clear
()
87
{
88
MNESourceEstimate::clear
();
89
}
90
91
//=============================================================================================================
92
93
bool
MNECorSourceEstimate::read
(QIODevice &p_IODevice,
MNECorSourceEstimate
& p_stc)
94
{
95
return
MNESourceEstimate::read
(p_IODevice, p_stc);
96
}
97
98
//=============================================================================================================
99
100
bool
MNECorSourceEstimate::write
(QIODevice &p_IODevice)
101
{
102
return
MNESourceEstimate::write
(p_IODevice);
103
}
104
105
//=============================================================================================================
106
107
MNECorSourceEstimate
&
MNECorSourceEstimate::operator=
(
const
MNECorSourceEstimate
&rhs)
108
{
109
if
(
this
!= &rhs)
// protect against invalid self-assignment
110
{
111
MNESourceEstimate::operator=
(rhs);
112
}
113
// to support chained assignment operators (a=b=c), always return *this
114
return
*
this
;
115
}
MNELIB::MNECorSourceEstimate
Correlated source estimation.
Definition:
mne_corsourceestimate.h:77
MNELIB::MNECorSourceEstimate::clear
void clear()
Definition:
mne_corsourceestimate.cpp:86
MNELIB::MNESourceEstimate::operator=
MNESourceEstimate & operator=(const MNESourceEstimate &rhs)
Definition:
mne_sourceestimate.cpp:256
MNELIB::MNECorSourceEstimate::write
bool write(QIODevice &p_IODevice)
Definition:
mne_corsourceestimate.cpp:100
mne_corsourceestimate.h
MNECorSourceEstimate class declaration.
MNELIB::MNESourceEstimate::read
static bool read(QIODevice &p_IODevice, MNESourceEstimate &p_stc)
Definition:
mne_sourceestimate.cpp:137
MNELIB::MNESourceEstimate
Source estimation.
Definition:
mne_sourceestimate.h:84
MNELIB::MNECorSourceEstimate::operator=
MNECorSourceEstimate & operator=(const MNECorSourceEstimate &rhs)
Definition:
mne_corsourceestimate.cpp:107
MNELIB::MNESourceEstimate::write
bool write(QIODevice &p_IODevice)
Definition:
mne_sourceestimate.cpp:194
MNELIB::MNECorSourceEstimate::MNECorSourceEstimate
MNECorSourceEstimate()
Definition:
mne_corsourceestimate.cpp:58
MNELIB::MNECorSourceEstimate::read
static bool read(QIODevice &p_IODevice, MNECorSourceEstimate &p_stc)
Definition:
mne_corsourceestimate.cpp:93
MNELIB::MNESourceEstimate::clear
void clear()
Definition:
mne_sourceestimate.cpp:107
Generated on Wed Aug 9 2023 17:55:42 for MNE-CPP by
1.8.17