loglinear: bug correction

time-shift
Michel Juillard 2016-05-06 10:12:12 +02:00
parent 67ea280773
commit 5e5157e375
1 changed files with 2 additions and 2 deletions

View File

@ -30,6 +30,6 @@ if isempty(M.aux_vars)
k = 1:M.endo_nbr;
else
type = [M.aux_vars.type];
k = [1:M.orig_endo_nbr; M.orig_endo_nbr+find((type ~= 2) & ...
(type ~= 3))'];
k = [1:M.orig_endo_nbr, M.orig_endo_nbr ...
+ find((type ~= 2) & (type ~= 3))];
end