diff --git a/matlab/dynare_estimation_init.m b/matlab/dynare_estimation_init.m
index c4e3f70dff675d9b4a65ca0279c00060ecb2fb85..c341d7a56967092f324a5ad78b6218217c5b0020 100644
--- a/matlab/dynare_estimation_init.m
+++ b/matlab/dynare_estimation_init.m
@@ -621,7 +621,7 @@ end
 
 % If the steady state of the observed variables is non zero, set noconstant equal 0 ()
 if (~options_.loglinear && all(abs(oo_.steady_state(bayestopt_.mfys))<1e-9)) || (options_.loglinear && all(abs(log(oo_.steady_state(bayestopt_.mfys)))<1e-9))
-    options_.noconstant = 1;
+    options_.noconstant = 0; %identifying the constant based on just the initial parameter value is not feasible
 else
     options_.noconstant = 0;
     % If the data are prefiltered then there must not be constants in the
diff --git a/matlab/method_of_moments/method_of_moments.m b/matlab/method_of_moments/method_of_moments.m
index 30d47f7fe533c0f661fb8c65ae5aad6ee97b6204..4d757afb7f9e626a682a62ad53f4060b79df9579 100644
--- a/matlab/method_of_moments/method_of_moments.m
+++ b/matlab/method_of_moments/method_of_moments.m
@@ -707,7 +707,7 @@ test_for_deep_parameters_calibration(M_);
 
 % If steady state of observed variables is non zero, set noconstant equal 0
 if all(abs(oo_.steady_state(oo_.dr.order_var(oo_.dr.obs_var)))<1e-9)
-    options_mom_.noconstant = 1;
+    options_mom_.noconstant = 0; %identifying the constant based on just the initial parameter value is not feasible
 else
     options_mom_.noconstant = 0;
 end