Decrease verbosity of solve_algo=0

Shuts off display unless debugging is requested. Otherwise, estimation will clutter the screen
time-shift
Johannes Pfeifer 2016-10-09 22:15:48 +02:00
parent acd8a4e73a
commit 29d1e80eda
1 changed files with 5 additions and 1 deletions

View File

@ -93,7 +93,11 @@ if options.solve_algo == 0
options4fsolve.MaxFunEvals = 50000;
options4fsolve.MaxIter = maxit;
options4fsolve.TolFun = tolf;
options4fsolve.Display = 'iter';
if options.debug==1
options4fsolve.Display = 'final';
else
options4fsolve.Display = 'off';
end
if jacobian_flag
options4fsolve.Jacobian = 'on';
else