Skip to content
Snippets Groups Projects
Verified Commit 92ce6f10 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

MATLAB compatibility fix: R2014a is 8.3, not 8.4

(cherry picked from commit 048564c9)
parent 8b1a0122
Branches
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ function dynareroot = dynare_config(path_to_dynare) ...@@ -16,7 +16,7 @@ function dynareroot = dynare_config(path_to_dynare)
% SPECIAL REQUIREMENTS % SPECIAL REQUIREMENTS
% none % none
% Copyright (C) 2001-2019 Dynare Team % Copyright (C) 2001-2020 Dynare Team
% %
% This file is part of Dynare. % This file is part of Dynare.
% %
...@@ -138,7 +138,7 @@ if ~isoctave && matlab_ver_less_than('7.11') ...@@ -138,7 +138,7 @@ if ~isoctave && matlab_ver_less_than('7.11')
end end
%% isdiag is missing in MATLAB < R2014a %% isdiag is missing in MATLAB < R2014a
if ~isoctave && matlab_ver_less_than('8.4') if ~isoctave && matlab_ver_less_than('8.3')
p{end+1} = '/missing/isdiag'; p{end+1} = '/missing/isdiag';
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment