source: trunk/yat/regression/Polynomial.cc @ 729

Last change on this file since 729 was 729, checked in by Peter, 17 years ago

Fixes #159. Also removed some inlines in OneDimensionalWeighted? by adding source file. Refs #81

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.0 KB
Line 
1// $Id: Polynomial.cc 729 2007-01-05 16:00:15Z peter $
2
3/*
4  Copyright (C) The authors contributing to this file.
5
6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
7
8  The yat library is free software; you can redistribute it and/or
9  modify it under the terms of the GNU General Public License as
10  published by the Free Software Foundation; either version 2 of the
11  License, or (at your option) any later version.
12
13  The yat library is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with this program; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21  02111-1307, USA.
22*/
23
24#include "Polynomial.h"
25#include "yat/utility/matrix.h"
26#include "yat/utility/vector.h"
27
28namespace theplu {
29namespace yat {
30namespace regression {
31
32  Polynomial::Polynomial(size_t power)
33    : OneDimensional(), power_(power)
34  {
35  }
36
37
38  Polynomial::~Polynomial(void)
39  {
40  }
41
42
43  const utility::matrix& Polynomial::covariance(void) const
44  {
45    return md_.covariance();
46  }
47
48
49  void Polynomial::fit(const utility::vector& x, const utility::vector& y)
50  {
51    utility::matrix X=utility::matrix(x.size(),power_+1,1);
52    for (size_t i=0; i<X.rows(); ++i)
53      for (u_int j=1; j<X.columns(); j++)
54        X(i,j)=X(i,j-1)*x(i);
55    md_.fit(X,y);
56    chisq_ = md_.chisq();
57  }
58
59
60  const utility::vector& Polynomial::fit_parameters(void) const
61  {
62    return md_.fit_parameters(); 
63  }
64
65
66  double Polynomial::predict(const double x) const
67  {
68    utility::vector vec(power_+1,1);
69    for (size_t i=1; i<=power_; ++i)
70      vec(i) = vec(i-1)*x;
71    return md_.predict(vec);
72  }
73
74
75  double Polynomial::s2(void) const
76  {
77    return chisq()/(ap_.n()-power_-1);
78  }
79
80
81  double Polynomial::standard_error2(const double x) const
82  {
83    utility::vector vec(power_+1,1);
84    for (size_t i=1; i<=power_; ++i)
85      vec(i) = vec(i-1)*x;
86    return md_.standard_error2(vec);
87  }
88
89}}} // of namespaces regression, yat, and theplu
Note: See TracBrowser for help on using the repository browser.