optimize(f=, interval=, lower=min(interval), upper=max(interval), maximum=FALSE, tol=.Machine$double.eps^0.25, ...)
f
|
the function to be optimized. The function is
either minimized or maximized over its first argument
depending on the value of maximum .
|
interval
| a vector containing the end-points of the interval to be searched for the minimum. |
lower
| the lower end point of the interval to be searched. |
upper
| the upper end point of the interval to be searched. |
tol
| the desired accuracy. |
...
|
additional arguments to f .
|
optimize
searches the interval from
lower
to upper
for a minimum or maximum of
the function f
with respect to its first argument.
The function uses Fortran code (from Netlib) based on algorithms given in the reference.
minimum
(or maximum
)
and objective
which give the location of the minimum (or maximum)
and the value of the function at that point.
nlm
, uniroot
.