Commit d4493441 authored by Meryem Ayse Yucel's avatar Meryem Ayse Yucel
Browse files

Update ar_glm_final.m

Reducing the number of max iterations to 10 for the sake of computational time.
parent ebcb99aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ function [dmoco, beta, tstat, pval, sigma, CovB, dfe, w, P, f] = ar_glm_final( d
            
            res = y-X*B;
            
            Pmax = 100;
            Pmax = 10;
            a = robust_ar_fit(res, Pmax);
            f = [1; -a(2:end)];