[Solved] Matlab Repeat Value


repmat and repelem are used for repeating the copies of an array. For your case, you can use either of these as: repmat(A,3,1) or repelem(A,3,1)

0

solved Matlab Repeat Value