source: trunk/yat/regression/MultiDimensionalWeighted.h @ 751

Last change on this file since 751 was 751, checked in by Jari Häkkinen, 16 years ago

Addresses #2. Continued adding GSL_error exceptions.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1#ifndef _theplu_yat_regression_multidimensionalweighted_
2#define _theplu_yat_regression_multidimensionalweighted_
3
4// $Id: MultiDimensionalWeighted.h 751 2007-02-17 12:25:36Z jari $
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
32namespace theplu {
33namespace yat {
34namespace 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       \throw A GSL_error exception is thrown if memory allocation
62       fails or the underlying GSL calls fails (usually matrix
63       dimension errors).
64    */
65    void fit(const utility::matrix& X, const utility::vector& y, 
66             const utility::vector& w);
67
68    ///
69    /// @return value in @a x according to fitted model
70    ///
71    double predict(const utility::vector& x) const;
72
73    ///
74    /// @return expected squared prediction error for a new data point
75    /// in @a x
76    ///
77    double prediction_error2(const utility::vector& x, const double w=1) const;
78
79    ///
80    /// @return error of model value in @a x
81    ///
82    double standard_error2(const utility::vector& x) const;
83
84    ///
85    /// @return parameters of fitted model
86    ///
87    const utility::vector& fit_parameters(void) const;
88
89    ///
90    /// @return variance of residuals
91    ///
92    double s2(const double w=1.0) const;
93
94  private:
95    double chisquare_;
96    utility::matrix covariance_;
97    utility::vector fit_parameters_;
98    double s2_;
99    gsl_multifit_linear_workspace* work_;
100
101  };
102
103}}} // of namespaces regression, yat, and theplu
104
105#endif
Note: See TracBrowser for help on using the repository browser.