Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dynare
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dynare
dynare
Commits
270246ac
Commit
270246ac
authored
Oct 11, 2017
by
Johannes Pfeifer
Committed by
Stéphane Adjemian
Jan 10, 2018
Browse files
Options
Downloads
Patches
Plain Diff
dynare_estimation_init.m: Add debugging info on NaN and Inf parameters
parent
7be8f10e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
matlab/dynare_estimation_init.m
+27
-0
27 additions, 0 deletions
matlab/dynare_estimation_init.m
matlab/list_of_parameters_calibrated_as_Inf.m
+37
-0
37 additions, 0 deletions
matlab/list_of_parameters_calibrated_as_Inf.m
with
64 additions
and
0 deletions
matlab/dynare_estimation_init.m
+
27
−
0
View file @
270246ac
...
...
@@ -569,6 +569,33 @@ end
if
info
(
1
)
fprintf
(
'\ndynare_estimation_init:: The steady state at the initial parameters cannot be computed.\n'
)
if
options_
.
debug
M
.
params
=
params
;
plist
=
list_of_parameters_calibrated_as_NaN
(
M
);
if
~
isempty
(
plist
)
message
=
[
'dynare_estimation_init:: Some of the parameters are NaN ('
];
for
i
=
1
:
size
(
plist
,
1
)
if
i
<
size
(
plist
,
1
)
message
=
[
message
,
deblank
(
plist
(
i
,:))
', '
];
else
message
=
[
message
,
deblank
(
plist
(
i
,:))
')'
];
end
end
end
fprintf
(
'%s\n'
,
message
)
plist
=
list_of_parameters_calibrated_as_Inf
(
M
);
if
~
isempty
(
plist
)
message
=
[
'dynare_estimation_init:: Some of the parameters are Inf ('
];
for
i
=
1
:
size
(
plist
,
1
)
if
i
<
size
(
plist
,
1
)
message
=
[
message
,
deblank
(
plist
(
i
,:))
', '
];
else
message
=
[
message
,
deblank
(
plist
(
i
,:))
')'
];
end
end
end
fprintf
(
'%s\n'
,
message
)
end
print_info
(
info
,
0
,
options_
);
end
...
...
This diff is collapsed.
Click to expand it.
matlab/list_of_parameters_calibrated_as_Inf.m
0 → 100644
+
37
−
0
View file @
270246ac
function
list
=
list_of_parameters_calibrated_as_Inf
(
M_
)
% The name of the function is explicit enough...
%
% INPUTS
% M_ [structure] Description of the (simulated or estimated) model.
%
% OUTPUTS
% list [char] n*p array of characters, each line is the name of parameter without value.
%
% ALGORITHM
% none
%
% SPECIAL REQUIREMENTS
% none
% Copyright (C) 2017 Dynare Team
%
% This file is part of Dynare.
%
% Dynare is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% Dynare is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
idx
=
find
(
isinf
(
M_
.
params
));
nnn
=
length
(
idx
);
list
=
[];
if
nnn
list
=
M_
.
param_names
(
idx
,:);
end
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment