How can I plot a map of T2 of WRF output?

5 views (last 30 days)
I am new to Matlab. I want to creat a map of temperature (T2) produced y WRF model having dimensions x=48, y=66 and Times=12. I applied following command but showed error.
filename=('D:\Tces_ctl.nc');
temp=ncread(filename,'T2');
longitude=ncread(filename,'XLONG');
latitude=ncread(filename,'XLAT');
mymap=pcolor(longitude,latitude,temp);
Error using pcolor (line 61) Matrix dimensions must agree. Anyone could please me guide about it or share me email so that I could send that file via email.

Accepted Answer

KSSV
KSSV on 26 May 2019
mymap=pcolor(longitude,latitude,temp');
You transpose the matrix and plot.
  7 Comments
KSSV
KSSV on 31 May 2019
filename=('D:Tces_ctl.nc');
longitude=ncread(filename,'XLONG');
latitude=ncread(filename,'XLAT');
temp=ncread(filename,'T2');
for i = 1:size(temp,3)
mymap=pcolor(longitude,latitude,temp(:,:,i));
shading interp
end
Abdus Samie
Abdus Samie on 2 Jun 2019
Thank you so much. It works now.

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Performance in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!