BALL  1.4.79
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
linearModel.h
Go to the documentation of this file.
1 // -*- Mode: C++; tab-width: 2; -*-
2 // vi: set ts=2:
3 //
4 //
5 
6 #ifndef LMODEL
7 #define LMODEL
8 
9 #ifndef REGRESSION
11 #endif
12 
13 namespace BALL
14 {
15  namespace QSAR
16  {
18  {
19 
20  public:
26  LinearModel(const QSARData& q);
27 
28  ~LinearModel();
29 
30  virtual void operator=(const LinearModel& m);
31 
33 
34 
38  virtual Eigen::VectorXd predict(const vector<double>& substance, bool transform=1);
39 
40  protected:
41  void calculateOffsets();
43  };
44  }
45 }
46 
47 #endif // LMODEL
#define BALL_EXPORT
Definition: COMMON/global.h:50