How to plot scatter type figures using gridded data?

9 visualizaciones (últimos 30 días)
Leon
Leon el 17 de Feb. de 2022
Respondida: KSSV el 18 de Feb. de 2022
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 comentario
AndresVar
AndresVar el 18 de Feb. de 2022
% 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)

Iniciar sesión para comentar.

Respuestas (1)

KSSV
KSSV el 18 de Feb. de 2022
Use:
scatter(X(:),Y(:),Z(:))

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by