Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dynare
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
122
Issues
122
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dynare
dynare
Commits
270246ac
Commit
270246ac
authored
Oct 11, 2017
by
Johannes Pfeifer
Committed by
Stéphane Adjemian (Charybdis)
Jan 10, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dynare_estimation_init.m: Add debugging info on NaN and Inf parameters
parent
7be8f10e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
0 deletions
+64
-0
matlab/dynare_estimation_init.m
matlab/dynare_estimation_init.m
+27
-0
matlab/list_of_parameters_calibrated_as_Inf.m
matlab/list_of_parameters_calibrated_as_Inf.m
+37
-0
No files found.
matlab/dynare_estimation_init.m
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
...
...
matlab/list_of_parameters_calibrated_as_Inf.m
0 → 100644
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment