by StephaneAdjemian » Wed Feb 01, 2006 10:12 am
Dear user,
The problem is with your version of matlab which does not accept functions with empty arguments. This works fine with version 7 of matlab but not with previous ones. All you've got to do when you find this kind of error message is first to replace :
subindx=subset();
by
subindx=subset;
and second to edit the corresponding m file and change the first line
function jndx = subset();
for
function jndx = subset;
We will correct these little annoying bugs in the next release of dynare (some are already corrected but we have to find them all!) .
Best,
St