Changeset 718 for trunk/yat/regression/Local.h
- Timestamp:
- Dec 26, 2006, 10:56:26 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/regression/Local.h
r703 r718 64 64 /// adding a data point 65 65 /// 66 inline void add(const double x, const double y) 67 { data_.push_back(std::make_pair(x,y)); } 66 void add(const double x, const double y); 68 67 69 ///70 /// Function returning predicted values71 ///72 inline const utility::vector& y_predicted(void) const73 { return y_predicted_; }74 75 ///76 /// Function returning error of predictions77 ///78 inline const utility::vector& y_err(void) const { return y_err_; }79 80 68 /// 81 69 /// @param nof_points Number of points used in each fit … … 87 75 /// @return x-values where fitting was performed. 88 76 /// 89 inline const utility::vector& x(void) const { return x_; } 77 const utility::vector& x(void) const; 78 79 /// 80 /// Function returning predicted values 81 /// 82 const utility::vector& y_predicted(void) const; 83 84 /// 85 /// Function returning error of predictions 86 /// 87 const utility::vector& y_err(void) const; 90 88 91 89 private:
Note: See TracChangeset
for help on using the changeset viewer.