How do I obtain a scatter plot of the vegetation optical depth (VOD) data in MATLAB?
1 回表示 (過去 30 日間)
古いコメントを表示
I have vegetation optical depth (VOD) data in a .mat file. (300*500 matrix). Upper left & lower right coordinates (Latitude & Longitude) are known. How do I get a scatter plot of the VOD data represented on corresponding coordinates?
0 件のコメント
採用された回答
KSSV
2022 年 10 月 10 日
Let X,Y be our lon and lat data; Z be your VOD data matrix.
pcolor(X,Y,Z)
colormap(jet)
shading interp
colorbar
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Scatter Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!