pooled_ols: fix typo

time-shift
Houtan Bastani 2017-11-14 15:52:09 +01:00
parent a7b3e17eb5
commit 1ef479f8c4
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ for i = 1:length(param_regex)
end
%% Find parameters and variable names in every equation & Setup estimation matrices
M_exo_trim = cellstr(M_.exo_names);
M_endo_exo_names_trim = [cellstr(M_.endo_names); M_exo_trim];
M_exo_names_trim = cellstr(M_.exo_names);
M_endo_exo_names_trim = [cellstr(M_.endo_names); M_exo_names_trim];
regex = strjoin(M_endo_exo_names_trim(:,1), '|');
mathops = '[\+\*\^\-\/]';
params = cell(length(rhs),1);