R/lmdd.R

"lmdd" <-
function(x,isort=1) {
if (missing(x)) messagena("x")
n <- length(x)
y <- single(n)
xme <- single(1)
xmd <- single(1)
xsd <- single(1)
f.res <- .Fortran("lmddz",
x=to.single(x),
y=to.single(y),
n=to.integer(n),
isort=to.integer(isort),
xme=to.single(xme),
xmd=to.single(xmd),
xsd=to.single(xsd))
list(y=f.res$y,xme=f.res$xme,xmd=f.res$xmd,xsd=f.res$xsd)
}

Try the robeth package in your browser

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

robeth documentation built on Aug. 22, 2023, 9:09 a.m.