R/psi.lnorm.new.R

Defines functions psi.lnorm.new

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

    temp <- mu.s - mu.f
                
    0.5 * (log(sq.sigma.f / sq.sigma.s) + (sq.sigma.s + temp * temp) / sq.sigma.f - 1)
}

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.