Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dóra Kocsis
dynare
Commits
fb0ccdd5
Commit
fb0ccdd5
authored
Oct 02, 2013
by
Stéphane Adjemian
Browse files
Provide more sensible lower and upper bounds for simpsa algorithm.
parent
3f16129e
Changes
1
Hide whitespace changes
Inline
Side-by-side
matlab/dynare_estimation_1.m
View file @
fb0ccdd5
...
...
@@ -408,7 +408,7 @@ if ~isequal(options_.mode_compute,0) && ~options_.mh_posterior_mode_estimation
xparam1
=
BESTEVER
.
x
;
disp
(
sprintf
(
'\n Objective function at mode: %f'
,
fval
))
case
10
[
xparam1
,
fval
,
exitflag
]
=
simpsa
(
func2str
(
objective_function
),
xparam1
,
-
inf
(
size
(
xparam1
)),
inf
(
size
(
xparam1
))
,[],
dataset_
,
options_
,
M_
,
estim_params_
,
bayestopt_
,
oo_
);
[
xparam1
,
fval
,
exitflag
]
=
simpsa
(
func2str
(
objective_function
),
xparam1
,
lb
,
ub
,[],
dataset_
,
options_
,
M_
,
estim_params_
,
bayestopt_
,
oo_
);
case
11
options_
.
cova_compute
=
0
;
[
xparam1
,
stdh
,
lb_95
,
ub_95
,
med_param
]
=
online_auxiliary_filter
(
xparam1
,
dataset_
,
options_
,
M_
,
estim_params_
,
bayestopt_
,
oo_
)
;
...
...
Write
Preview
Supports
Markdown
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