MNE-CPP
0.1.9
A Framework for Electrophysiology
|
Correlated source estimation. More...
#include <mne_corsourceestimate.h>
Public Member Functions | |
MNECorSourceEstimate () | |
MNECorSourceEstimate (const Eigen::MatrixXd &p_sol, const Eigen::VectorXi &p_vertices, float p_tmin, float p_tstep) | |
MNECorSourceEstimate (const MNECorSourceEstimate &p_SourceEstimate) | |
MNECorSourceEstimate (QIODevice &p_IODevice) | |
void | clear () |
bool | write (QIODevice &p_IODevice) |
MNECorSourceEstimate & | operator= (const MNECorSourceEstimate &rhs) |
Public Member Functions inherited from MNELIB::MNESourceEstimate | |
MNESourceEstimate () | |
MNESourceEstimate (const Eigen::MatrixXd &p_sol, const Eigen::VectorXi &p_vertices, float p_tmin, float p_tstep) | |
MNESourceEstimate (const MNESourceEstimate &p_SourceEstimate) | |
MNESourceEstimate (QIODevice &p_IODevice) | |
void | clear () |
MNESourceEstimate | reduce (qint32 start, qint32 n) |
bool | write (QIODevice &p_IODevice) |
bool | isEmpty () const |
MNESourceEstimate & | operator= (const MNESourceEstimate &rhs) |
int | samples () const |
Eigen::VectorXi | getIndicesByLabel (const QList< FSLIB::Label > &lPickedLabels, bool bIsClustered) const |
Static Public Member Functions | |
static bool | read (QIODevice &p_IODevice, MNECorSourceEstimate &p_stc) |
Static Public Member Functions inherited from MNELIB::MNESourceEstimate | |
static bool | read (QIODevice &p_IODevice, MNESourceEstimate &p_stc) |
Additional Inherited Members | |
Public Types inherited from MNELIB::MNESourceEstimate | |
typedef QSharedPointer< MNESourceEstimate > | SPtr |
typedef QSharedPointer< const MNESourceEstimate > | ConstSPtr |
Public Attributes inherited from MNELIB::MNESourceEstimate | |
Eigen::MatrixXd | data |
Eigen::VectorXi | vertices |
Eigen::RowVectorXf | times |
float | tmin |
float | tstep |
Correlated source estimation.
Correlated source estimation which holds results of MNE-CPP inverse routines, which estimate the correlation too
Definition at line 77 of file mne_corsourceestimate.h.
MNECorSourceEstimate::MNECorSourceEstimate | ( | ) |
Default constructor
Definition at line 58 of file mne_corsourceestimate.cpp.
MNELIB::MNECorSourceEstimate::MNECorSourceEstimate | ( | const Eigen::MatrixXd & | p_sol, |
const Eigen::VectorXi & | p_vertices, | ||
float | p_tmin, | ||
float | p_tstep | ||
) |
Constructs a source estimation from given data
[in] | p_sol. | |
[in] | p_vertices. | |
[in] | p_tmin. | |
[in] | p_tstep. |
MNECorSourceEstimate::MNECorSourceEstimate | ( | const MNECorSourceEstimate & | p_SourceEstimate | ) |
Copy constructor.
[in] | p_SourceEstimate | Source estimate data which should be copied. |
Definition at line 72 of file mne_corsourceestimate.cpp.
MNECorSourceEstimate::MNECorSourceEstimate | ( | QIODevice & | p_IODevice | ) |
Constructs a source estimation, by reading from a IO device.
[in] | p_IODevice | IO device to read from the source estimation. |
Definition at line 79 of file mne_corsourceestimate.cpp.
void MNECorSourceEstimate::clear | ( | ) |
Initializes source estimate.
Definition at line 86 of file mne_corsourceestimate.cpp.
MNECorSourceEstimate & MNECorSourceEstimate::operator= | ( | const MNECorSourceEstimate & | rhs | ) |
Assignment Operator
[in] | rhs | SourceEstimate which should be assigned. |
Definition at line 107 of file mne_corsourceestimate.cpp.
|
static |
mne_read_stc_file
Reads a source estimate from a given file
[in] | p_IODevice | IO device to red the stc from. |
[in,out] | p_stc | the read stc. |
Definition at line 93 of file mne_corsourceestimate.cpp.
bool MNECorSourceEstimate::write | ( | QIODevice & | p_IODevice | ) |
mne_write_stc_file
Writes a stc file
[in] | p_IODevice | IO device to write the stc to. |
Definition at line 100 of file mne_corsourceestimate.cpp.