example1_rosen_nograd_bfgs: Example 1: Minimize Rosenbrock function (with numerical...

View source: R/RcppExports.R

example1_rosen_nograd_bfgsR Documentation

Example 1: Minimize Rosenbrock function (with numerical gradient) using BFGS

Description

Minimize Rosenbrock function (with numerical gradient) using BFGS.

Usage

example1_rosen_nograd_bfgs()

Examples

fr <- function(x) {   ## Rosenbrock Banana function
 x1 <- x[1]
 x2 <- x[2]
 100 * (x2 - x1 * x1)^2 + (1 - x1)^2
}

optim(c(-1.2,1), fr, NULL, method = "BFGS")

## corresponding C++ implementation:
example1_rosen_nograd_bfgs()

roptim documentation built on Aug. 6, 2022, 5:08 p.m.