How to read and plot nc4 files?
14 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
KSSV
2017 年 5 月 8 日
Read about ncdisp, ncread
These two should be enough to read the data.
その他の回答 (1 件)
kk1991
2017 年 5 月 8 日
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.
参考
カテゴリ
Help Center および File Exchange で Standard File Formats についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!