Nothing
dfolded <- function(x, a, p, mu, su, logged = TRUE) {
if ( is.null(dim(x)[1]) ) x <- matrix(x, nrow = 1)
d <- dim(x)[2] - 1
h <- t( helm(d + 1) )
down <- 1/sqrt( det( 2 * pi * su) )
z1 <- Compositional::alef(x, a)$aff
y1 <- z1 %*% h
lam <- Rfast::rowMins( a * z1, value = TRUE ) ^ (-2)
y2 <- lam * y1
f <- p * down * exp( -0.5 * Rfast::mahala(y1, mu, su) ) + (1 - p) * down * lam^d * exp( -0.5 * Rfast::mahala(y2, mu, su) )
if (logged) f <- log(f)
f
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.