# HG changeset patch # User John W. Eaton # Date 1231966700 18000 # Node ID 39867b4aca52b614b74b01026a7b3cb26033c7e9 # Parent 352d3245d4c134d568de3f2a623c36549e7a0a18 fsolve.m: additional doc fix diff --git a/scripts/optimization/fsolve.m b/scripts/optimization/fsolve.m --- a/scripts/optimization/fsolve.m +++ b/scripts/optimization/fsolve.m @@ -25,14 +25,14 @@ ## @var{fcn} should accepts a vector (array) defining the unknown variables, ## and return a vector of left-hand sides of the equations. Right-hand sides ## are defined to be zeros. -## In other words, this function attempts to determine a vector @var{X} such -## that @code{@var{fcn}(@var{X})} gives (approximately) all zeros. +## In other words, this function attempts to determine a vector @var{x} such +## that @code{@var{fcn} (@var{x})} gives (approximately) all zeros. ## @var{x0} determines a starting guess. The shape of @var{x0} is preserved ## in all calls to @var{fcn}, but otherwise it is treated as a column vector. ## @var{options} is a structure specifying additional options. Currently, fsolve ## recognizes these options: @code{"FunValCheck"}, @code{"OutputFcn"}, ## @code{"TolX"}, @code{"TolFun"}, @code{"MaxIter"}, -## @code{"MaxFunEvals"} and @code{"Jacobian"}. +## @code{"MaxFunEvals"}, and @code{"Jacobian"}. ## ## If @code{"Jacobian"} is @code{"on"}, it specifies that @var{fcn}, ## called with 2 output arguments, also returns the Jacobian matrix