Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

hurst_base.cpp

Go to the documentation of this file.
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 

Generated at Thu May 22 21:12:35 2003 for Hurst Exponent Calculation and Supporting Statistics by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001