How to plot scatter type figures using gridded data?

As you know, scatter plot takes in a 3-column data. What if my X, Y, and Z are all gridded data with the size of 360 x 180?
How do I display the value in each grid using colors? Kind of like contour but I want to see the values at each of the grids.
Thanks!

1 个评论

% example
Z=randi(10,3); % "gridded data" 3x3
x=3:6; % x coords you can get from X mesh
y=6:9; % y coords you can get from Y mesh
imagesc(x,y,Z)

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Scatter Plots 的更多信息

产品

版本

R2021b

标签

提问:

2022-2-17

回答:

2022-2-18

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by