Skip to content
Snippets Groups Projects
Commit 37101065 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Moved isfile routine in missing.

This routine has been introduced in R2017b. Closes #1523.

(cherry picked from commit 560a047a)
parent 57faed78
Branches
Tags
No related merge requests found
......@@ -123,6 +123,11 @@ if ~exist('struct2array')
p{end+1} = '/missing/struct2array';
end
% isfile is missing in Octave and Matlab<R2017b
if isoctave || matlab_ver_less_than('9.3')
p{end+1} = '/missing/isfile';
end
P = cellfun(@(c)[dynareroot(1:end-1) c], p, 'uni',false);
% Get mex files folder(s)
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment