Commit 081d0149 authored by Meryem Ayse Yucel's avatar Meryem Ayse Yucel
Browse files

Quick fix for GLM stats

Now outputting only for OLS, need to be modified in the future for WL.
parent 4fc986e9
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -758,9 +758,11 @@ for iBlk=1:length(data_y)
    yR_blks{iBlk}   = yR;
    
    % stats struct
    hmrstats.beta_label = beta_label; % 
    if glmSolveMethod == 1 %  for OLS only now
        hmrstats.beta_label = beta_label;
        hmrstats.tval = tval;
        hmrstats.pval = pval;
    end

end