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

MATLAB compatibility fix: R2014a is 8.3, not 8.4

parent a716b631
Branches
Tags
No related merge requests found
......@@ -16,7 +16,7 @@ function dynareroot = dynare_config(path_to_dynare)
% SPECIAL REQUIREMENTS
% none
% Copyright (C) 2001-2019 Dynare Team
% Copyright (C) 2001-2020 Dynare Team
%
% This file is part of Dynare.
%
......@@ -133,7 +133,7 @@ if ~isoctave && matlab_ver_less_than('7.11')
end
%% 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';
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment