Nothing
f_mactivate <-
function (U, W)
{
d <- ncol(U)
m <- ncol(W)
N <- nrow(U)
Xout <- matrix(0, N, m)
Cout <- .C("mactivate_a", as.integer(N), as.integer(d), as.integer(m),
as.double(as.vector(U)), as.double(as.vector(W)), Xout = as.double(as.vector(Xout)))
Xout <- Cout[["Xout"]]
dim(Xout) <- c(N, m)
colnames(Xout) <- colnames(W)
return(Xout)
}
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.