how to plot 3D data using NetCDF files ?

답변 (1개)

KSSV
KSSV 2021년 5월 28일

0 개 추천

Reading ncfile is very easy in MATLAB. You need to know only very few functions. Read about ncdisp, ncread.
ncfile = 'san_diego_bay_P020_2017.nc' ;
lon = ncread(ncfile,'lon') ;
lat = ncread(ncfile,'lat') ;
B = ncread(ncfile,'Band1') ;
pcolor(lon,lat,B')
shading interp
colorbar

제품

릴리스

R2020a

태그

질문:

2021년 5월 28일

답변:

2021년 5월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by