Skip to content
Snippets Groups Projects
Commit a6bb9bc8 authored by adjemian's avatar adjemian
Browse files

bug correction (initialization of jndx)

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v3@574 ac1d8469-bf42-47a9-8791-bf33cf982152
parent a9da299f
No related branches found
Tags
No related merge requests found
......@@ -31,7 +31,9 @@ elseif strcmpi(info,'AllWithoutMeasurementErros')
indx = [(1:nvx),nvx+nvn+1:nvx+nvn+ncx,nvx+nvn+ncx+ncn+1:nx]';
end
if ~isempty(ExcludedParamNames)
if isempty(ExcludedParamNames)
jndx = indx;
else
tt = [];
for i = 1:length(ExcludedParamNames)
tmp = strmatch(ExcludedParamNames{i},lgx_);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment