Skip to content
Snippets Groups Projects
Commit a2d9e2af authored by ratto's avatar ratto
Browse files

Display message when rank condition on J and H is always OK.

git-svn-id: https://www.dynare.org/svn/dynare/trunk@3031 ac1d8469-bf42-47a9-8791-bf33cf982152
parent 33f0f84f
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,13 @@ jok = 0; ...@@ -28,6 +28,13 @@ jok = 0;
jokP = 0; jokP = 0;
jokJ = 0; jokJ = 0;
jokPJ = 0; jokPJ = 0;
if ~any(any(idemodel.ind==0))
disp(['All parameters are identified in the model in the MC sample (rank of H).' ]),
disp(' ')
end
if ~any(any(idemoments.ind==0))
disp(['All parameters are identified by J moments in the MC sample (rank of J)' ]),
end
for j=1:npar, for j=1:npar,
if any(idemodel.ind(j,:)==0), if any(idemodel.ind(j,:)==0),
pno = 100*length(find(idemodel.ind(j,:)==0))/SampleSize; pno = 100*length(find(idemodel.ind(j,:)==0))/SampleSize;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment