The R Project SVN R

Rev

Rev 61433 | Rev 65208 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 61433 Rev 62209
Line 16... Line 16...
16
  conjugate-gradient algorithms. It includes an option for
16
  conjugate-gradient algorithms. It includes an option for
17
  box-constrained optimization and simulated annealing.
17
  box-constrained optimization and simulated annealing.
18
}
18
}
19
\usage{
19
\usage{
20
optim(par, fn, gr = NULL, \dots,
20
optim(par, fn, gr = NULL, \dots,
21
      method = c("Nelder-Mead", "BFGS", "CG", "L-BFGS-B", "SANN", "Brent"),
21
      method = c("Nelder-Mead", "BFGS", "CG", "L-BFGS-B", "SANN",
-
 
22
                 "Brent"),
22
      lower = -Inf, upper = Inf,
23
      lower = -Inf, upper = Inf,
23
      control = list(), hessian = FALSE)
24
      control = list(), hessian = FALSE)
24
 
25
 
25
optimHess(par, fn, gr = NULL, \dots, control = list())
26
optimHess(par, fn, gr = NULL, \dots, control = list())
26
}
27
}