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)
Thanks for this!
Post a Comment
1 comment:
Thanks for this!
Post a Comment