MATLAB: Rearrange the dimension of lat and lon in matrix

dimension

There are 113 latitude and 226 longitude.I get a matrix in dimension 113*226.But I want it in 226*113.If it is possible to obtain in matlab?

Best Answer

You want to transpose the matrix?
New_Matrix = Old_Matrix';
Related Question