From e48fee90e76dc4eb2c5dd4816dc2b521eac7e632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=28Charybdis=29?= Date: Tue, 29 May 2018 12:14:53 +0200 Subject: [PATCH] Added missing semicolon. --- matlab/get_ar_ec_matrices.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/get_ar_ec_matrices.m b/matlab/get_ar_ec_matrices.m index f095e6612..742d91fbb 100644 --- a/matlab/get_ar_ec_matrices.m +++ b/matlab/get_ar_ec_matrices.m @@ -156,7 +156,7 @@ for i = 1:length(rhsvars) end % Temporary bug fix (ordering of the variables in the VAR model) -[a,b,c] = intersect(M_.var.toto.lhs, oo_.var.toto.ar_idx, 'stable') +[a,b,c] = intersect(M_.var.toto.lhs, oo_.var.toto.ar_idx, 'stable'); oo_.var.toto.ar_idx = oo_.var.toto.ar_idx(c); oo_.var.toto.ar = oo_.var.toto.ar(:,c,:);