Changeset 729 for trunk/yat/regression/LinearWeighted.h
- Timestamp:
- Jan 5, 2007, 5:00:15 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/regression/LinearWeighted.h
r718 r729 63 63 /// @return standard deviation of parameter \f$ \alpha \f$ 64 64 /// 65 double alpha_ err(void) const;65 double alpha_var(void) const; 66 66 67 67 /// … … 73 73 /// @return standard deviation of parameter \f$ \beta \f$ 74 74 /// 75 double beta_ err(void) const;75 double beta_var(void) const; 76 76 77 77 /** … … 88 88 89 89 /// 90 /// @brief Mean Squared Error91 ///92 double mse(void) const;93 94 ///95 90 /// Function predicting value using the linear model: 96 91 /// \f$ y =\alpha + \beta (x - m) \f$ … … 99 94 100 95 /// 101 /// estimated deviation from predicted value for a new data point102 /// in @a x with weight @a w96 /// estimated squared deviation from predicted value for a new 97 /// data point in @a x with weight @a w 103 98 /// 104 double prediction_error (const double x, const double w=1) const;99 double prediction_error2(const double x, const double w=1) const; 105 100 106 101 /** … … 113 108 Var(\beta)*(x-m)} \f$. 114 109 */ 115 double standard_error (const double x) const;110 double standard_error2(const double x) const; 116 111 117 112 private:
Note: See TracChangeset
for help on using the changeset viewer.