#include <hurst_base.h>
Public Methods | |
| hurstInfo () | |
| ~hurstInfo () | |
| double | slope () |
| void | slope (double s) |
| double | slopeErr () |
| void | slopeErr (double se) |
| double | intercept () |
| void | intercept (double intr) |
| std::vector<lregress::point>& | points () |
Private Methods | |
| hurstInfo (const hurstInfo &rhs) | |
Private Attributes | |
| double | slope_ |
| double | intercept_ |
| double | slopeErr_ |
| std::vector<lregress::point> | points_ |
|
|
|
|
|
Definition at line 47 of file hurst_base.h. 00048 {
00049 slope_ = 0;
00050 slopeErr_ = 0;
00051 }
|
|
|
Definition at line 52 of file hurst_base.h. 00052 {};
|
|
|
Definition at line 61 of file hurst_base.h. 00061 { intercept_ = intr; }
|
|
|
Definition at line 60 of file hurst_base.h. Referenced by rescaled_range::calc_hurst_est().
00060 { return intercept_; }
|
|
|
Definition at line 63 of file hurst_base.h. Referenced by rescaled_range::calc_hurst_est().
00063 { return points_; }
|
|
|
Definition at line 55 of file hurst_base.h. 00055 { slope_ = s; }
|
|
|
Definition at line 54 of file hurst_base.h. Referenced by rescaled_range::calc_hurst_est().
00054 { return slope_; }
|
|
|
Definition at line 58 of file hurst_base.h. 00058 { slopeErr_ = se; }
|
|
|
Definition at line 57 of file hurst_base.h. Referenced by rescaled_range::calc_hurst_est().
00057 { return slopeErr_; }
|
|
|
Definition at line 41 of file hurst_base.h. |
|
|
Definition at line 43 of file hurst_base.h. |
|
|
Definition at line 42 of file hurst_base.h. |
|
|
Definition at line 40 of file hurst_base.h. |
1.2.8.1 written by Dimitri van Heesch,
© 1997-2001