How to estimate standard errors?
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm using a code to estimate a hurst coefficient MFDFA procedure, Hurst coefficient is the slope of logFq(s) vs log(s) for q=2, i use polyfit function like this:
for nq=1:length(q),
C = polyfit(log2(scale),log2(Fq(nq,:)),1);
Hq(nq) = C(1);
Aq(nq)= C(2) ;
qRegLine{nq} = polyval(C,log2(scale));
end
How can i improve this estimation by giving also the error terms of Aq and Hq?
Bests
0 commentaires
Réponses (1)
Voir également
Catégories
En savoir plus sur Probability Distributions and Hypothesis Tests dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!