Mercurial > hg > octave-jordi
changeset 8988:315828058e0d
minor doc fixes in fsolve
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Tue, 17 Mar 2009 12:38:44 +0100 |
parents | 542015fada9e |
children | 46a12e3f882c |
files | scripts/optimization/fsolve.m |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/optimization/fsolve.m +++ b/scripts/optimization/fsolve.m @@ -89,6 +89,7 @@ ## is requested or until outputfcn is called with a different vector, in which ## case they should be dropped in favor of this most recent vector. A short ## example how this can be achieved follows: +## ## @example ## function [fvec, fjac] = my_optim_func (x, optimvalues, state) ## persistent sav = [], sav0 = []; @@ -111,7 +112,7 @@ ## ## ## .... ## -## fsolve (@my_optim_func, x0, optimset ("OutputFcn", @my_optim_func, @dots{})) +## fsolve (@@my_optim_func, x0, optimset ("OutputFcn", @@my_optim_func, @dots{})) ## @end example ### ## @end deftypefn