How do I obtain a scatter plot of the vegetation optical depth (VOD) data in MATLAB?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Dinuka Kankanige
el 10 de Oct. de 2022
Comentada: Dinuka Kankanige
el 15 de Oct. de 2022
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 comentarios
Respuesta aceptada
KSSV
el 10 de Oct. de 2022
Let X,Y be our lon and lat data; Z be your VOD data matrix.
pcolor(X,Y,Z)
colormap(jet)
shading interp
colorbar
Más respuestas (0)
Ver también
Categorías
Más información sobre Scatter Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!