Nothing
#permutes rows and columns in matrix
#equivalent to node permutation in a graph
permNodesM2M<-function(mat){
ord<-sample(dim(mat)[1],dim(mat)[1],replace=FALSE)
newmat<-mat[ord,ord]
return(newmat)
}
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.