Skip to content
Snippets Groups Projects
Commit 29d1e80e authored by Johannes Pfeifer's avatar Johannes Pfeifer
Browse files

Decrease verbosity of solve_algo=0

Shuts off display unless debugging is requested. Otherwise, estimation will clutter the screen
parent acd8a4e7
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment