Merge branch 'master' into ecb-master

time-shift
Houtan Bastani 2018-05-31 18:55:32 +02:00
commit f9b3f7571e
3 changed files with 26 additions and 1 deletions

View File

@ -123,6 +123,11 @@ if ~isoctave && matlab_ver_less_than('8.1')
p{end+1} = '/missing/strsplit';
end
% isrow is missing in Matlab<R2010b
if ~isoctave && matlab_ver_less_than('7.11')
p{end+1} = '/missing/isrow';
end
P = cellfun(@(c)[dynareroot(1:end-1) c], p, 'uni',false);
% Get mex files folder(s)

View File

@ -0,0 +1,20 @@
function r = isrow(V)
% Copyright (C) 2018 Dynare Team
%
% This file is part of Dynare.
%
% Dynare is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% Dynare is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
[m, n] = size(V);
r = (m == 1);

@ -1 +1 @@
Subproject commit 48031b99f6586dc33bf0935393e5a45bf2bc8dd0
Subproject commit 9166cda2257d062c2a2f685af3a4022e4731ccd1