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
Marco Ratto
dynare
Commits
b615d2d7
Commit
b615d2d7
authored
Nov 16, 2018
by
Johannes Pfeifer
Browse files
identification_analysis.m: Fix bug introduced in
60d95b65
We already used a variable called offset
parent
3b696352
Changes
1
Hide whitespace changes
Inline
Side-by-side
matlab/identification_analysis.m
View file @
b615d2d7
...
...
@@ -124,20 +124,20 @@ if info(1)==0
ide_strength_J_prior
=
NaN
(
1
,
nparam
);
if
init
ide_uncert_unnormaliz
=
NaN
(
1
,
nparam
);
offset
=
0
;
if
prior_exist
offset_prior
=
0
;
if
~
isempty
(
estim_params_
.
var_exo
)
normaliz_prior_std
=
bayestopt_
.
p2
(
1
:
estim_params_
.
nvx
)
'
;
% normalize with prior standard deviation
offset
=
offset
+
estim_params_
.
nvx
+
estim_params_
.
nvn
;
offset
_prior
=
offset
_prior
+
estim_params_
.
nvx
+
estim_params_
.
nvn
;
else
normaliz_prior_std
=
[];
end
if
~
isempty
(
estim_params_
.
corrx
)
normaliz_prior_std
=
[
normaliz_prior_std
bayestopt_
.
p2
(
offset
+
1
:
offset
+
estim_params_
.
ncx
)
'
];
% normalize with prior standard deviation
offset
=
offset
+
estim_params_
.
ncx
+
estim_params_
.
ncn
;
normaliz_prior_std
=
[
normaliz_prior_std
bayestopt_
.
p2
(
offset
_prior
+
1
:
offset
_prior
+
estim_params_
.
ncx
)
'
];
% normalize with prior standard deviation
offset
_prior
=
offset
_prior
+
estim_params_
.
ncx
+
estim_params_
.
ncn
;
end
if
~
isempty
(
estim_params_
.
param_vals
)
normaliz_prior_std
=
[
normaliz_prior_std
bayestopt_
.
p2
(
offset
+
1
:
offset
+
estim_params_
.
np
)
'
];
% normalize with prior standard deviation
normaliz_prior_std
=
[
normaliz_prior_std
bayestopt_
.
p2
(
offset
_prior
+
1
:
offset
_prior
+
estim_params_
.
np
)
'
];
% normalize with prior standard deviation
end
% normaliz = max([normaliz; normaliz1]);
% normaliz1(isinf(normaliz1)) = 1;
...
...
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