diff --git a/matlab/basic_plan.m b/matlab/basic_plan.m
index cd7b09a8be0ea6eaf0f9c102ef60f9984b80de18..c7b4cb360330ab126ae612deb0595570381f26c8 100644
--- a/matlab/basic_plan.m
+++ b/matlab/basic_plan.m
@@ -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)))];