1function H = hurst_estimate(sequence,method,isplot,opt)
3%
'hurst_estimate' estimate the hurst parameter of a given sequence with
4% an appointed method. The algorithms of the methods can be found in
5% Murad
's Taqqu, Vadim Teverovsky and Walter Willinger's paper
6%
"Estimators for long-range dependence: an empirical study" or other
9% sequence: the input sequence
for estimate
10% method: the name of a function which used to estimate the hurst
11% parameter of the sequence,e.g.
12%
'aggvar': use aggvar function to estimate.
13%
'RS': use RS function to estimate.
14%
'per': use per function to estimate.
15% isplot: whether display the plot. without a plot
if isplot equal to 0
16% opt: a optional parameter
for some methods
18% H: the estimated hurst coeffeient of the input sequence
20% H = hurst_estimate(
'peng',sequence,1);
24% Version 1.0, 03/10/2008
30 H = feval(method,sequence,isplot);
32 H = feval(method,sequence,isplot);
34 H = feval(method,sequence,isplot,opt);