R/d2q.R

Defines functions d2q

Documented in d2q

d2q <- function(x) {
    if (! is.numeric(x))
        stop("argument must be numeric")
    storage.mode(x) <- "double"
    .Call(C_d2q, x)
}

Try the rcdd package in your browser

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

rcdd documentation built on April 25, 2023, 1:09 a.m.