inst/doc/examples/chenlog_test.R

options(digits=12)
if(!require("optimx"))stop("this test requires package optimx.")
if(!require("setRNG"))stop("this test requires setRNG.")

# Use a preset seed so test values are reproducable. 
test.rng <- list(kind="Wichmann-Hill", normal.kind="Box-Muller", seed=c(979,1479,1542))
old.seed <- setRNG(test.rng)

##########
cat("optimx test chen-x.f ...\n")

chenl.f <- function(xx) {
x <- exp(xx)
v <- xx + exp(x)
f <- (v - sqrt(v^2 + 5e-04))/2
sum (f * f)
}

chenl.g <- function(xx) {
   res <- chenl.res(xx)
   jj<-chenl.jac(xx)
   gg<- as.vector(t(2.0 * jj %*% as.vector(res)))
   #return(gg)
}

chenl.res <- function(xx) {
   x <- exp(xx)
   v <- xx + exp(x)
   res <- (v - sqrt(v^2 + 5e-04))/2
}

chenl.jac <- function(xx) {
   x <- exp(xx)
   n<-length(x)
   v <- xx + exp(x)
   jj<-matrix(0.0, n, n)
   for (i in 1:n) {
     jj[i,i] <- 0.5 * (1.0 + exp(xx[i])*exp(x[i])) * (1.0-v[i]/sqrt(v[i]^2 + 5e-04))
   } 
   jj #return(jj)
}

n<-10

p0 <- log(rexp(n)) # use log to keep away from 0 and failure

system.time(chenlo <- opm(par=p0, fn=chenl.f, method="MOST"))[1]
print(summary(chenlo, order=value))

system.time(chenlog <- opm(par=p0, fn=chenl.f, gr=chenl.g, method="MOST"))[1]
print(summary(chenlog, order=value))

system.time(chenlogn <- opm(par=p0, fn=chenl.f, gr="grpracma", method="MOST"))[1]
print(summary(chenlogn, order=value))

# Check gradiend
library(pracma)
gg <- as.vector(chenl.g(p0))
gg

Try the optimx package in your browser

Any scripts or data that you put into this service are public.

optimx documentation built on Oct. 24, 2023, 5:06 p.m.