Skip to content
Snippets Groups Projects
Commit 231cf194 authored by ferhat's avatar ferhat
Browse files

Fix a typo in basic_plan.m

parent 83a69632
Branches
Tags
No related merge requests found
......@@ -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)))];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment