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!