00001 00002 #include "hurst_base.h" 00003 00004 using namespace std; 00005 00006 double hurst_base::log10of2 = log10( 2.0 ); 00007 00008 void hurst_base::print_regression_points( vector<lregress::point> data ) 00009 { 00010 const size_t numPts = data.size(); 00011 00012 size_t i; 00013 for (i = 0; i < numPts; i++) { 00014 printf("%7.4f %7.4f\n", data[i].x(), data[i].y() ); 00015 } 00016 } // print_regression_points 00017 00018