Nothing
make.symmetric <-
function(x)
{
if (dim(x)[1] != dim(x)[2])
stop("'x' is not sqare matrix")
rval <- t(x)
m <- (x[lower.tri(x)] + rval[lower.tri(rval)]) / 2
rval[lower.tri(rval)] <- m
rval <- t(rval)
rval[lower.tri(rval)] <- m
rval
}
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.