Merge branch 'ident_fix' of git.dynare.org:JohannesPfeifer/dynare

Ref. !2050
mr#2067
Sébastien Villemot 2022-07-26 11:55:02 +02:00
commit 7005634eb0
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ for jide = 1:4
disp([' The rank of ', strJacobian, ' (', strMeaning, ') is deficient for ', num2str(sum(ide.ino & ide.minimal_state_space)),' out of ',int2str(EffectiveSampleSize),' effective MC runs!' ])
end
else
disp([' The rank of ', strJacobian, ' (', strMeaning, ') is deficient for ', num2str(sum(ide.ino)),' out of ',int2str(EffectiveSampleSize),' effective MC runs!' ]),
disp([' The rank of ', strJacobian, ' (', strMeaning, ') is deficient for ', num2str(sum(ide.ino~=0)),' out of ',int2str(EffectiveSampleSize),' effective MC runs!' ]),
end
else
disp([' The rank of ', strJacobian, ' (', strMeaning, ') is deficient!']),

View File

@ -155,7 +155,7 @@ if param_nbr>0 && (rankX<rankrequired || min(1-Mco)<tol_rank)
end
ee0 = [rankX+1:size([Xparnonzero Xrest],2)]; %look into last columns with singular values of problematic parameter sets (except single parameters)
for j=1:length(ee0)
% linearely dependent parameters
% linearly dependent parameters
ixno = ixno + 1;
if test_flag == 2
temp = (abs(ee1(:,ee0(j))) > tol_sv)';