lsqcurvefit command window exit flag suppression
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Thijs
el 14 de Feb. de 2012
Comentada: Mr M.
el 29 de Mayo de 2016
lsqcurvefit dumps its exit flags in the work space. i.e
lsqcurvefit stopped because the problem appears to be locally singular.
or
Optimization completed because the size of the gradient is less than the default value of the function tolerance.
is there any way to suppress these outputs in the command window?
0 comentarios
Respuesta aceptada
Andrew Newell
el 14 de Feb. de 2012
You could include options in your call to lsqcurvefit and set Display to 'off':
opts = optimset('lsqcurvefit');
optimset(opts,'Display','off');
... = lsqcurvefit(...,opts);
3 comentarios
Andrew Newell
el 14 de Feb. de 2012
opts=optimset('lsqcurvefit') sets a lot of options specific to lsqcurvefit. In practice, it probably doesn't make much difference.
Más respuestas (0)
Ver también
Categorías
Más información sobre Downloads en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!