


% -*- texinfo -*-
% @deftypefn {Function File} {[@var{x},@var{v}] =} fminbnd(@var{f},@var{lb},@var{ub},@var{[options]},@var{P1},@var{P2}, ...)
%
% Find the minimizer @var{x} of a scalar function and the corresponding
% value @var{v} with the Golden Search method.
%
% @strong{Inputs}
% @table @var
% @item f
% A string contining the name of the function to minimiz
% @item lb
% Value to use as an initial lower bound on @var{x}.
% @item ub
% Value to use as an initial upper bound on @var{x}.
% @item options
% Vector with control parameters (For compatibily with MATLAB, not used
% here)
% @item P1,P2, ...
% Optional parameter for function @var{f}
%
% @end table
% @end deftypefn