R/KLopt.lnorm.R

Defines functions KLopt.lnorm

Documented in KLopt.lnorm

KLopt.lnorm <- function(x, w = rep(1, length(x)) / length(x), eta, sq.var, theta.fix, theta.var = NULL, p, x.lb = min(x), x.rb = max(x), opt = list())
{
    result <- kl.opt.lnorm.main(x, w, eta, sq.var, theta.fix, theta.var, p, x.lb, x.rb, opt)
    class(result) <- "KLopt.lnorm"
    result$call <- match.call()
    result
}

Try the rodd package in your browser

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

rodd documentation built on May 2, 2019, 8:16 a.m.