source: trunk/src/RegressionLinear.cc @ 213

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

moving minor stuff to base class

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 345 bytes
Line 
1// $Id: RegressionLinear.cc 213 2004-11-04 19:58:08Z 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
23}} // of namespace statistics and namespace theplu
Note: See TracBrowser for help on using the repository browser.