00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef LVMODEL
00027 #define LVMODEL
00028
00029 #ifndef BALL_LINALG_MATRIX_H
00030 #include <BALL/MATHS/LINALG/matrix.h>
00031 #endif
00032
00033
00034 namespace BALL
00035 {
00036 namespace QSAR
00037 {
00040 class BALL_EXPORT LatentVariableModel
00041 {
00042 public:
00043 LatentVariableModel();
00044
00047 const Matrix<double>* getLatentVariables();
00048
00051 const Matrix<double>* getWeights();
00052
00055 const Matrix<double>* getLoadings();
00056
00057 protected:
00058
00060 Matrix<double> latent_variables_;
00061
00063 Matrix<double> loadings_;
00064
00066 Matrix<double> weights_;
00067
00068 friend class RegressionValidation;
00069 };
00070 }
00071 }
00072
00073 #endif // LVMODEL
00074