-
Notifications
You must be signed in to change notification settings - Fork 0
/
pcaclass.h
34 lines (28 loc) · 861 Bytes
/
pcaclass.h
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
#ifndef PCACLASS_H
#define PCACLASS_H
#include <Eigen/Dense>
#include <vector>
class Pcaclass
{
public:
Pcaclass();
Pcaclass(int nbVariables, int nbRecords, const Eigen::MatrixXf& inputData);
void runPCA();
std::vector<Eigen::MatrixXf> projectDataOnEigVec(int nbdimtokeep);
Eigen::MatrixXf get_inputData();
Eigen::MatrixXf get_transformedData();
Eigen::MatrixXf get_eigenVec();
Eigen::MatrixXf get_eigenValues();
Eigen::MatrixXf get_varMat();
std::vector< Eigen::MatrixXf > get_principalComponents();
private:
Eigen::MatrixXf _inputData;
Eigen::MatrixXf _transformedData;
Eigen::MatrixXf _eigenVec;
Eigen::MatrixXf _eigenValues;
Eigen::MatrixXf _varMat;
std::vector< Eigen::MatrixXf > _principalComponents;
int _nbRecords;
int _nbVariables;
};
#endif // PCACLASS_H