R/CVlnorm.R

Defines functions CVlnorm

Documented in CVlnorm

##' CV of log-normal dist baed on omega parameters
##' CV based variance like provided in Nonmem's \code{OMEGA} metrix.
##' @param omega A variance as provided in diagonal om the Nonmem OMEGA matrix
##' @return CV of the distribution (numeric)
##' @details This is a very simple function. All it does is
##' \code{sqrt(exp(omega)-1)}.
##' @export
##' 

CVlnorm <- function(omega){
    sqrt(exp(omega)-1)
}

Try the NMcalc package in your browser

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

NMcalc documentation built on Sept. 11, 2024, 7:51 p.m.