Changeset 216 for trunk/src/RegressionNaive.h
- Timestamp:
- Dec 29, 2004, 10:29:54 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/RegressionNaive.h
r213 r216 13 13 //////////////////////// 14 14 #include <gsl/gsl_fit.h> 15 #include <utility> 15 16 16 17 namespace theplu { … … 40 41 /// 41 42 virtual ~RegressionNaive(void) {}; 43 44 inline void estimate(const double x, double& y, double& y_err) 45 { y=m_; y_err=sqrt(var_); } 42 46 43 47 ///
Note: See TracChangeset
for help on using the changeset viewer.