Nothing
## m22l converts a matrix into a matrix
## without brackets or parentheses around the array of numbers.
m22l <- function(matrix) {
printmrow <- function(x) {
y <- paste(paste(x,collapse="&"),"\\")
sprintf(y)
}
out <- apply(matrix,1,printmrow)
out2 <- paste("\\\\begin{matrix}",paste(out,collapse= "\\\\\\ "),"\\\\end{matrix}")
return(out2)
}
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.