Except the 'copula', 'x' and 'method', other inputs of the intervalFitb
function has default value.For method,
Method "BFGS" is a quasi-Newton method (also known as a variable
metric algorithm), specifically that published simultaneously in
1970 by Broyden, Fletcher, Goldfarb and Shanno. This uses function
values and gradients to build up a picture of the surface to be
optimized.
Method "L-BFGS-B" is that of Byrd et. al. (1995) which allows box
constraints, that is each variable can be given a lower and/or upper
bound. The initial value must satisfy the constraints. This uses a
limited-memory modification of the BFGS quasi-Newton method. If
non-trivial bounds are supplied, this method will be selected,
with a warning.
Method "Brent" is for one-dimensional problems only, using 'optimize'
function. It can be useful in cases where optim() is used inside other
functions where only method can be specified, such as in mle from
package stats4.