aboutsummaryrefslogtreecommitdiff
path: root/interactionhandler.h
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-01-13 11:09:06 +0100
committerSamuel Fadel <samuelfadel@gmail.com>2016-01-13 11:09:06 +0100
commitb1c4eac81a46c41ff9f36f4226b9058bbb379d3b (patch)
treeaf519d35228085988bec8cc36a2f0b8393f5d281 /interactionhandler.h
parenta621eb3ee0bf04e998b0e8479e8166f25e25c268 (diff)
Subsamples/samples renamed to control points (CP) where possible.
Diffstat (limited to 'interactionhandler.h')
-rw-r--r--interactionhandler.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/interactionhandler.h b/interactionhandler.h
index eeda230..ace192a 100644
--- a/interactionhandler.h
+++ b/interactionhandler.h
@@ -16,21 +16,21 @@ public:
TECHNIQUE_PEKALSKA
};
- InteractionHandler(const arma::mat &X, const arma::uvec &sampleIndices);
+ InteractionHandler(const arma::mat &X, const arma::uvec &cpIndices);
void setTechnique(Technique technique);
signals:
- void subsampleChanged(const arma::mat &Y);
+ void cpChanged(const arma::mat &Y);
public slots:
- void setSubsample(const arma::mat &Ys);
+ void setCP(const arma::mat &Ys);
protected:
InteractionHandler() {}
private:
arma::mat m_X, m_Y;
- arma::uvec m_sampleIndices;
+ arma::uvec m_cpIndices;
Technique m_technique;
};