Skip to content
Snippets Groups Projects
Commit 0e3bf1e8 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Merge branch 'prior_posterior_statistics' into 'master'

prior_posterior_statistics.m: fix logical condition

See merge request !2114
parents 62644839 e7ca989b
Branches
Tags
1 merge request!2114prior_posterior_statistics.m: fix logical condition
Pipeline #7837 passed
......@@ -139,7 +139,7 @@ irun = ones(n_variables_to_fill,1);
ifil = zeros(n_variables_to_fill,1);
run_smoother = 0;
if options_.smoother || options_.forecast || options_.filter_step_ahead || options_.smoothed_state_uncertainty
if options_.smoother || options_.forecast || ~isempty(options_.filter_step_ahead) || options_.smoothed_state_uncertainty
run_smoother = 1;
if options_.loglinear
oo_.Smoother.loglinear = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment