MATLAB: How to make multiple columns one below the other making it one column

atmospheric sciencestatistics

I have a file with 20 columns each having 24 rows as attached in the excel file. But I want them to come one after the other all in one column. How can I do that?

Best Answer

x=xlsread('data.xls');
x=x(:);