Skip to content

Commit

Permalink
Correction in limo_rep_anova following change in limo_decomp
Browse files Browse the repository at this point in the history
I have changed the output of limo_decomp in limo_rep_anova to follow the
update on limo_decomp which now output both eigen_vector and
eigen_values
  • Loading branch information
maryall committed Jul 8, 2016
1 parent 09f3731 commit 8d7410c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion limo_rep_anova.m
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@
H = (Betas'*X'*M*X*Betas); % SS Hypothesis (Effect)

if flag == 2
Eigen_values = limo_decomp(E,H);
[Eigen_vector, Eigen_values] = limo_decomp(E,H);
p = size(Y,2); % = number of variables (dimension)
vh = nb_gp - 1; % df = q above
s = min(vh,p); % subspace in which mean Ys are located
Expand Down

0 comments on commit 8d7410c

Please sign in to comment.