From b1c4eac81a46c41ff9f36f4226b9058bbb379d3b Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Wed, 13 Jan 2016 11:09:06 +0100 Subject: Subsamples/samples renamed to control points (CP) where possible. --- interactionhandler.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'interactionhandler.h') 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; }; -- cgit v1.2.3