Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Dynare
dynare
Commits
59dd96db
Commit
59dd96db
authored
Jan 27, 2021
by
Johannes Pfeifer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bayesian smoother: fix field naming for Filtered_Variables_X_step_ahead
Naming used length of vector instead of actual steps
parent
8f47b276
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
matlab/pm3.m
matlab/pm3.m
+1
-1
No files found.
matlab/pm3.m
View file @
59dd96db
...
...
@@ -264,7 +264,7 @@ else
end
if
filter_step_ahead_indicator
for
K_step
=
1
:
length
(
options_
.
filter_step_ahead
)
name4
=
[
'Filtered_Variables_'
,
num2str
(
K_step
),
'_step_ahead'
];
name4
=
[
'Filtered_Variables_'
,
num2str
(
options_
.
filter_step_ahead
(
K_step
)
)
,
'_step_ahead'
];
oo_
.
(
name4
)
.
Mean
.
(
name
)
=
squeeze
(
Mean_filter_step_ahead
(
K_step
,
i
,:));
oo_
.
(
name4
)
.
Median
.
(
name
)
=
squeeze
(
Median_filter_step_ahead
(
K_step
,
i
,:));
oo_
.
(
name4
)
.
Var
.
(
name
)
=
squeeze
(
Var_filter_step_ahead
(
K_step
,
i
,:));
...
...
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