R/qn.R

qn <- function (x, corrFact)
{
	if (missing (corrFact))	
		corrFact = 1 / (sqrt(2) * qnorm(5/8))

	ret.C <- .C (C_qn,
			as.integer (length (x)),
			as.double (corrFact),
			parOutD = double (1),
			x = as.double (x))
	ret.C$parOutD
}

Try the pcaPP package in your browser

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

pcaPP documentation built on Oct. 24, 2022, 9:07 a.m.