Changeset 616 for trunk/c++_tools/statistics/Naive.h
- Timestamp:
- Aug 31, 2006, 10:52:02 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/c++_tools/statistics/Naive.h
r586 r616 1 // $Id$2 3 1 #ifndef _theplu_statistics_regression_naive_ 4 2 #define _theplu_statistics_regression_naive_ 5 3 4 // $Id$ 5 6 6 #include <c++_tools/statistics/OneDimensional.h> 7 8 #include <c++_tools/gslapi/vector.h>9 7 10 8 #include <iostream> 11 9 #include <utility> 12 10 13 14 11 namespace theplu { 12 namespace utility { 13 class vector; 14 } 15 15 namespace statistics { 16 16 namespace regression { … … 46 46 /// weighted version with unity weights. 47 47 /// 48 void fit(const gslapi::vector& x, const gslapi::vector& y);48 void fit(const utility::vector& x, const utility::vector& y); 49 49 50 50 ///
Note: See TracChangeset
for help on using the changeset viewer.