LinearModel.cxx
Go to the documentation of this file.
2 
3 #include <Eigen/Dense>
4 using namespace Eigen;
5 
7 {}
8 
10 {}
11 
13 {
14  return _X * _beta;
15 }
16 
18 {
19  return ( _y - Predict() ).squaredNorm();
20 }
21 
22 
24 {
25  return ( _y - Predict() ).norm() / _y.size();
26 }
Eigen::VectorXd Predict()
Definition: LinearModel.cxx:12