Skip to content
Snippets Groups Projects
Commit e1db53ca authored by Stéphane Adjemian (Charybdis)'s avatar Stéphane Adjemian (Charybdis)
Browse files

dynare_config adds matlab/missing/bsxfun in the path if needed. bsxfun.m is a...

dynare_config adds matlab/missing/bsxfun in the path if needed. bsxfun.m is a replacement for matlab's
built-in bsxfun function (missing in versions older than 7.4).
parent 9754bc7a
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,12 @@ if exist('OCTAVE_VERSION')
addpath([dynareroot '/missing/ordschur'])
end
% bsxfun is missing in old versions of matlab (octave?)
if ~exist('OCTAVE_VERSION') && matlab_ver_less_than('7.4')
addpath([dynareroot '/missing/bsxfun'])
end
% Add path to MEX files
if exist('OCTAVE_VERSION')
addpath([dynareroot '../mex/octave/']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment