Mercurial > hg > octave-lyh
diff scripts/optimization/fsolve.m @ 9153:5247e89688e1
Eliminate most overfull errors when running texi2pdf for generating pdf documentation
Use @smallexample when necessary to reduce font for long lines.
Reword variables or phrases so that Tex can break them at a better spot.
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Fri, 24 Apr 2009 12:29:01 -0700 |
parents | 74d5c1a4ca96 |
children | 25f50d2d76b3 |
line wrap: on
line diff
--- a/scripts/optimization/fsolve.m +++ b/scripts/optimization/fsolve.m @@ -92,7 +92,7 @@ ## ## @example ## @group -## function [fvec, fjac] = my_optim_func (x, optimvalues, state) +## function [fvec, fjac] = user_func (x, optimvalues, state) ## persistent sav = [], sav0 = []; ## if (nargin == 1) ## ## evaluation call @@ -113,7 +113,7 @@ ## ## ## @dots{}. ## -## fsolve (@@my_optim_func, x0, optimset ("OutputFcn", @@my_optim_func, @dots{})) +## fsolve (@@user_func, x0, optimset ("OutputFcn", @@user_func, @dots{})) ## @end group ## @end example ###