MATLAB: How to Reshape matrix.

matrixmatrix arraymatrix manipulation

Hello,
Say i have a 1×365 matrix. How would i create a matrix of 24×365 where the data from the initial matrix column (1×365) would be propagated down the entire column in the second matrix (24×365).
cheers

Best Answer

repmat(YourMatrix, 24, 1)
Related Question