Merge pull request #1108 from FerhatMihoubi/Branch_basic_plan

Fix a typo in basic_plan.m
time-shift
Stéphane Adjemian 2015-11-27 15:32:25 +01:00
commit 88467aa275
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ function plan = basic_plan(plan, exogenous, expectation_type, date, value)
if ~isempty(common_var)
common_date = intersect(date, plan.constrained_date_{common_var});
if ~isempty(common_date)
[date, i_date] = setdiff(date, common_date);
[date_, i_date] = setdiff(date, common_date);
value = value(i_date);
if common_date.length > 1
the_dates = [cell2mat(strings(common_date(1))) ':' cell2mat(strings(common_date(end)))];