MATLAB: How to repeat a column 20 times one below the other

atmospheric sciencedata analysisgeologystatistics

I have one column of 24 rows (as attached in the file) and i want to keep repeating the column below for 20 time creating a column of 480 rows. Can anyone please suggest how to do that?

Best Answer

repmat(A,20,1)