MATLAB: How to sum up a matrix n-times

MATLABsum up matrix

I have a matrix A = [1 2 3 4; 5 6 7 8]
How to sum up a matrix up to n times.?

Best Answer

n*A ???
You will need to provide a sample input & output so we can understand what you really want.