Info

This question is closed. Reopen it to edit or answer.

HELP About contour command

3 views (last 30 days)
Alex Molina
Alex Molina on 17 Jul 2012
Closed: MATLAB Answer Bot on 20 Aug 2021
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

Answers (2)

Sean de Wolski
Sean de Wolski on 17 Jul 2012
Edited: Sean de Wolski on 17 Jul 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 on 17 Jul 2012
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 Comment
Walter Roberson
Walter Roberson on 17 Jul 2012
pointsize = 8;
scatter3(X(:), Y(:), Z(:), pointsize, Z(:))

This question is closed.

Community Treasure Hunt

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

Start Hunting!