source: trunk/src/RegressionLinear.cc @ 216

Last change on this file since 216 was 216, checked in by Peter, 18 years ago

RegressionLocal? added

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 344 bytes
Line 
1// $Id: RegressionLinear.cc 216 2004-12-29 09:29:54Z peter $
2
3// Header
4#include "RegressionLinear.h"
5
6// C++_tools
7#include "Regression.h"
8#include "vector.h"
9
10#include <gsl/gsl_fit.h>
11
12
13namespace theplu {
14namespace statistics {
15
16 
17  RegressionLinear::RegressionLinear(void)
18    : Regression(), cov00_(0), cov01_(0), cov11_(0), k_(0), m_(0)
19  {
20  }
21
22}} // of namespace statistics and namespace theplu
Note: See TracBrowser for help on using the repository browser.