MNE-CPP
0.1.9
A Framework for Electrophysiology
|
This class computes the correlation metric. More...
#include <correlation.h>
Public Types | |
typedef QSharedPointer< Correlation > | SPtr |
typedef QSharedPointer< const Correlation > | ConstSPtr |
Public Types inherited from CONNECTIVITYLIB::AbstractMetric | |
typedef QSharedPointer< AbstractMetric > | SPtr |
typedef QSharedPointer< const AbstractMetric > | ConstSPtr |
Public Member Functions | |
Correlation () | |
Public Member Functions inherited from CONNECTIVITYLIB::AbstractMetric | |
AbstractMetric () | |
Static Public Member Functions | |
static Network | calculate (ConnectivitySettings &connectivitySettings) |
Static Protected Member Functions | |
static Eigen::MatrixXd | compute (const ConnectivitySettings::IntermediateTrialData &inputData) |
static void | reduce (Eigen::MatrixXd &resultData, const Eigen::MatrixXd &data) |
Additional Inherited Members | |
Static Public Attributes inherited from CONNECTIVITYLIB::AbstractMetric | |
static bool | m_bStorageModeIsActive = false |
static int | m_iNumberBinStart = -1 |
static int | m_iNumberBinAmount = -1 |
This class computes the correlation metric.
This class computes the correlation metric.
Definition at line 81 of file correlation.h.
typedef QSharedPointer<const Correlation> CONNECTIVITYLIB::Correlation::ConstSPtr |
Const shared pointer type for Correlation.
Definition at line 86 of file correlation.h.
typedef QSharedPointer<Correlation> CONNECTIVITYLIB::Correlation::SPtr |
Shared pointer type for Correlation.
Definition at line 85 of file correlation.h.
|
explicit |
Constructs a Correlation object.
Definition at line 73 of file correlation.cpp.
|
static |
Calculates the correlation coefficient between the rows of the data matrix.
[in] | connectivitySettings | The input data and parameters. |
Definition at line 79 of file correlation.cpp.
|
staticprotected |
Calculates the connectivity matrix for a given input data matrix based on the correlation coefficient.
[in] | inputData | The input data. |
Definition at line 163 of file correlation.cpp.
|
staticprotected |
Sums up (reduces) the in parallel processed connectivity matrix.
[out] | resultData | The result data. |
[in] | data | The incoming, temporary result data. |
Definition at line 184 of file correlation.cpp.