1 | #ifndef _theplu_yat_regression_multidimensionalweighted_ |
---|
2 | #define _theplu_yat_regression_multidimensionalweighted_ |
---|
3 | |
---|
4 | // $Id: MultiDimensionalWeighted.h 741 2007-01-13 14:41:40Z peter $ |
---|
5 | |
---|
6 | /* |
---|
7 | Copyright (C) The authors contributing to this file. |
---|
8 | |
---|
9 | This file is part of the yat library, http://lev.thep.lu.se/trac/yat |
---|
10 | |
---|
11 | The yat library is free software; you can redistribute it and/or |
---|
12 | modify it under the terms of the GNU General Public License as |
---|
13 | published by the Free Software Foundation; either version 2 of the |
---|
14 | License, or (at your option) any later version. |
---|
15 | |
---|
16 | The yat library is distributed in the hope that it will be useful, |
---|
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
19 | General Public License for more details. |
---|
20 | |
---|
21 | You should have received a copy of the GNU General Public License |
---|
22 | along with this program; if not, write to the Free Software |
---|
23 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
24 | 02111-1307, USA. |
---|
25 | */ |
---|
26 | |
---|
27 | #include "yat/utility/matrix.h" |
---|
28 | #include "yat/utility/vector.h" |
---|
29 | |
---|
30 | #include <gsl/gsl_multifit.h> |
---|
31 | |
---|
32 | namespace theplu { |
---|
33 | namespace yat { |
---|
34 | namespace regression { |
---|
35 | |
---|
36 | /// |
---|
37 | /// @brief MultiDimesional fitting. |
---|
38 | /// |
---|
39 | class MultiDimensionalWeighted |
---|
40 | { |
---|
41 | public: |
---|
42 | |
---|
43 | /// |
---|
44 | /// @brief Default Constructor |
---|
45 | /// |
---|
46 | MultiDimensionalWeighted(void); |
---|
47 | |
---|
48 | /// |
---|
49 | /// @brief Destructor |
---|
50 | /// |
---|
51 | ~MultiDimensionalWeighted(void); |
---|
52 | |
---|
53 | /// |
---|
54 | /// @return sum of squared residuals |
---|
55 | /// |
---|
56 | double chisq(void) const; |
---|
57 | |
---|
58 | /// |
---|
59 | /// @see gsl_multifit_wlinear |
---|
60 | /// |
---|
61 | void fit(const utility::matrix& X, const utility::vector& y, |
---|
62 | const utility::vector& w); |
---|
63 | |
---|
64 | /// |
---|
65 | /// @return value in @a x according to fitted model |
---|
66 | /// |
---|
67 | double predict(const utility::vector& x) const; |
---|
68 | |
---|
69 | /// |
---|
70 | /// @return expected squared prediction error for a new data point |
---|
71 | /// in @a x |
---|
72 | /// |
---|
73 | double prediction_error2(const utility::vector& x, const double w=1) const; |
---|
74 | |
---|
75 | /// |
---|
76 | /// @return error of model value in @a x |
---|
77 | /// |
---|
78 | double standard_error2(const utility::vector& x) const; |
---|
79 | |
---|
80 | /// |
---|
81 | /// @return parameters of fitted model |
---|
82 | /// |
---|
83 | const utility::vector& fit_parameters(void) const; |
---|
84 | |
---|
85 | /// |
---|
86 | /// @return variance of residuals |
---|
87 | /// |
---|
88 | double s2(const double w=1.0) const; |
---|
89 | |
---|
90 | private: |
---|
91 | double chisquare_; |
---|
92 | utility::matrix covariance_; |
---|
93 | utility::vector fit_parameters_; |
---|
94 | double s2_; |
---|
95 | gsl_multifit_linear_workspace* work_; |
---|
96 | |
---|
97 | }; |
---|
98 | |
---|
99 | }}} // of namespaces regression, yat, and theplu |
---|
100 | |
---|
101 | #endif |
---|