R/permc.R

"permc" <-
function(x,it,n=nrow(x),iopt=1) {
if (missing(it)) messagena("it")
np <- length(it)
mdx <- nrow(x)
if (missing(x)) x <- matrix(single(1),mdx,np)
f.res <- .Fortran("permcz",
x=to.single(x),
it=to.integer(it),
n=to.integer(n),
np=to.integer(np),
mdx=to.integer(mdx),
iopt=to.integer(iopt))
list(x=f.res$x)
}

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.