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
RevLine 
[193]1// $Id: RegressionLinear.cc 216 2004-12-29 09:29:54Z peter $
2
[202]3// Header
[193]4#include "RegressionLinear.h"
5
[202]6// C++_tools
7#include "Regression.h"
[193]8#include "vector.h"
9
10#include <gsl/gsl_fit.h>
11
12
13namespace theplu {
[196]14namespace statistics {
[193]15
16 
17  RegressionLinear::RegressionLinear(void)
[213]18    : Regression(), cov00_(0), cov01_(0), cov11_(0), k_(0), m_(0)
[193]19  {
20  }
21
[196]22}} // of namespace statistics and namespace theplu
Note: See TracBrowser for help on using the repository browser.