How to read and plot nc4 files?
이전 댓글 표시
I have downloaded huge nc4-files from NASA through matlab. Just wondering if someone know how to read spesific things in these files and then plot them?
채택된 답변
추가 답변 (1개)
kk1991
2017년 5월 8일
0 개 추천
댓글 수: 1
KSSV
2017년 5월 8일
It is very much possible.....Read the documentation....
lon = ncread('myfile.nc','lon') ;
lat = ncread('myfile.nc','lat') ;
data = ncread('myfile.nc','data') ;
% plot here
And please don't type your comment sin answer box. You comment under the answer/ comment.
카테고리
도움말 센터 및 File Exchange에서 Standard File Formats에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!