MatrixBerryCore
repmat.m
Go to the documentation of this file.
1 function outArray=repmat(inpArray,varargin)
2 if nargin==2&&isempty(varargin{1})
3  outArray=mxberry.core.type.createarray(class(inpArray),[0 0]);
4 else
5  outArray=repmat(inpArray,varargin{:});
6 end
function repmat(in inpArray, in varargin)