blob: 022e2894b27bd6ac59a6c61be4024539cb40fc66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include "manipulationhandler.h"
#include <algorithm>
#include "mp.h"
ManipulationHandler::ManipulationHandler(const arma::mat &X,
const arma::uvec &cpIndices)
: m_X(X)
, m_cpIndices(cpIndices)
, m_technique(TECHNIQUE_LAMP)
{
}
void ManipulationHandler::setCP(const arma::mat &Ys)
{
arma::mat Y(m_X.n_rows, 2);
switch (m_technique) {
case TECHNIQUE_PLMP:
// TODO?
break;
case TECHNIQUE_LSP:
// TODO?
break;
case TECHNIQUE_LAMP:
mp::lamp(m_X, m_cpIndices, Ys, Y);
break;
case TECHNIQUE_PEKALSKA:
// TODO?
break;
}
mapChanged(Y);
}
|