Create a graph from 2 vectors and a matrix

6 visualizaciones (últimos 30 días)
Aigerim Sakhayeva
Aigerim Sakhayeva el 22 de Jul. de 2021
Respondida: Star Strider el 22 de Jul. de 2021
Hello. I have a problem plotting. I have X, Y, Z data (Coordinates and Height). X is 3950 data, Y is 3670 data, Z is 3950 x 3670 data. I write plot3 gives an error: Vectors must be the same lengths.
Please help ... How to make a schedule? I cannot delete or adjust the data, this is accurate data.

Respuestas (2)

KSSV
KSSV el 22 de Jul. de 2021
Editada: KSSV el 22 de Jul. de 2021
Read about pcolor and surf.
pcolor(X,Y,Z')
shading interp
colorbar

Star Strider
Star Strider el 22 de Jul. de 2021
I would use surf or mesh:
figure
surf(X,Y,Z.', 'EdgeColor','none')
to see it from the top, add:
view(0,90)
,

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by