Nothing
create.Fmatrix <- function(x, name, as.mxMatrix=TRUE, ...) {
x <- as.logical(x)
Fmatrix <- Diag(as.numeric(x))[x, , drop=FALSE]
if (as.mxMatrix) {
if (missing(name)) as.mxMatrix(Fmatrix) else as.mxMatrix(Fmatrix, name=name)
} else {
Fmatrix
}
}
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.