repmat <-
function(X,m,n){
##R equivalent of repmat (matlab)
mx = dim(X)[1]
nx = dim(X)[2]
matrix(t(matrix(X,mx,nx*n)),mx*m,nx*n,byrow=T)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.