source: trunk/src/RegressionLocal.cc @ 206

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

.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 467 bytes
Line 
1// $Id: RegressionLocal.cc 206 2004-11-02 18:31:09Z peter $
2
3#include "RegressionLocal.h"
4
5#include "Regression.h"
6#include "RegressionKernel.h"
7#include "RegressionLinear.h"
8#include "vector.h"
9
10
11namespace theplu {
12namespace statistics {
13
14  RegressionLocal::RegressionLocal(const gslapi::vector& x, 
15                                   const gslapi::vector& y, 
16                                   const Regression& r, 
17                                   const RegressionKernel& k)
18    : kernel_(&k), regression_(&r)
19  {
20  }
21
22
23}} // of namespace cpptools and namespace theplu
Note: See TracBrowser for help on using the repository browser.