HELP About contour command

My question is this, i have X and Y points, and for each coordinate there are a Z value, this is not a function, for example:
X=2 , Y=3 and Z=6.7
There are a different vectors for each coordintes, So is a anyway to represent this grafically like contour? o in the way increase de Z value change the color of the graphic?
PS: Sorry my poor english

Risposte (2)

Sean de Wolski
Sean de Wolski il 17 Lug 2012
Modificato: Sean de Wolski il 17 Lug 2012
You could use scatter3 to show a scatter plot of the data:
doc scatter3
Or you could interpolate your data to a regular grid using TriScatteredInterp and then use contour
doc TriScatteredInterp
Alex Molina
Alex Molina il 17 Lug 2012

0 voti

i used scatter3 and works, but my problem is the points are all with the same color, and i need diferent color while increase the Z value

1 Commento

pointsize = 8;
scatter3(X(:), Y(:), Z(:), pointsize, Z(:))

Questa domanda è chiusa.

Richiesto:

il 17 Lug 2012

Chiuso:

il 20 Ago 2021

Community Treasure Hunt

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

Start Hunting!

Translated by