From ebfa72740fc21cb27c5c03e255c206a84aba093a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Ry=C3=BBk=29?= <stepan@adjemian.eu> Date: Sat, 24 Jul 2021 12:20:29 +0200 Subject: [PATCH] Changed default for initial step bound factor. Should fix simulation failure in pac/trend-component-10/example1, that seems to be caused by a too large value of this parameter. --- matlab/default_option_values.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/default_option_values.m b/matlab/default_option_values.m index 23813d1468..956a5ecbe1 100644 --- a/matlab/default_option_values.m +++ b/matlab/default_option_values.m @@ -53,7 +53,7 @@ options_.qz_zero_threshold = 1e-6; options_.lyapunov_complex_threshold = 1e-15; options_.solve_tolf = eps^(1/3); options_.solve_tolx = eps^(2/3); -options_.trust_region_initial_step_bound_factor = 100; +options_.trust_region_initial_step_bound_factor = 1; options_.dr_display_tol=1e-6; options_.minimal_workspace = false; options_.dp.maxit = 3000; -- GitLab