# HG changeset patch # User Jaroslav Hajek # Date 1237289924 -3600 # Node ID 315828058e0d605ff2ea77af477db000039c8a55 # Parent 542015fada9e87c149d9d3e7a8a6dcc5719f48fc minor doc fixes in fsolve diff -r 542015fada9e -r 315828058e0d scripts/optimization/fsolve.m --- a/scripts/optimization/fsolve.m Mon Mar 16 17:03:07 2009 -0400 +++ b/scripts/optimization/fsolve.m Tue Mar 17 12:38:44 2009 +0100 @@ -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