MATLAB: I have a 720 x 296 matrix, how can I specify for repeat this n times in some kind of loop like:

repeat loop

1
2
3
4
5
1
2
3
4
5
1
2
3
4
5
.
..

Best Answer

repmat(YourMatrix, n, 1)
perhaps? It is not clear what is to be repeated.