R/repmat.R

Defines functions repmat

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=TRUE)
}
bblonder/hypervolume documentation built on May 3, 2024, 8:45 a.m.