R/mu.R

Defines functions mu

mu <- function(x, eta.f, sq.var.f, theta.f)
{
    ev.eta.f <- eta.f(x, theta.f)
    sq.sigma.f <- log(1 + sq.var.f(x, theta.f) / (ev.eta.f * ev.eta.f))
    log(ev.eta.f) - 0.5 * sq.sigma.f
}

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.