rbmatlab 0.10.01
|
00001 function rmat = repmatrows(A,times) 00002 % 00003 % function stretching a matrix in first direction by 00004 % copying the rows 00005 00006 % Bernard Haasdonk 19.7.2006 00007 00008 rmat = reshape(repmat(A',times,1),... 00009 size(A,2),size(A,1)* times)'; 00010 % TO BE ADJUSTED TO NEW SYNTAX 00011 %| \docupdate