From fad9aa684636347ac997bd6e5b328a9cf575b86d Mon Sep 17 00:00:00 2001 From: Michel Juillard Date: Wed, 7 May 2014 14:23:31 +0200 Subject: [PATCH] removing debugging printing --- matlab/trust_region.m | 1 - 1 file changed, 1 deletion(-) diff --git a/matlab/trust_region.m b/matlab/trust_region.m index 1edb87732..5fb93c5c6 100644 --- a/matlab/trust_region.m +++ b/matlab/trust_region.m @@ -181,7 +181,6 @@ while (niter < maxiter && ~info) % FIXME -- why tolf*n*xn? If abs (e) ~ abs(x) * eps is a vector % of perturbations of x, then norm (fjac*e) <= eps*n*xn, i.e. by % tolf ~ eps we demand as much accuracy as we can expect. - disp([niter fn ratio]) if (fn <= tolf*n*xn) info = 1; % The following tests done only after successful step.