Nothing
step.g3 <-
function(param) {
a <- param$a
b <- param$b
cc <- param$cc
p <- ncol(a)
q <- ncol(b)
r <- ncol(cc)
x <- param$x
x <- flatten(x)
ax <- t(a) %*% x
bc <-Kron( b, cc)
g <- ax %*% bc
dim(g) <- c(p, q, r)
param$g <- g
param
}
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.