HELP About contour command
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
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
Réponses (2)
Sean de Wolski
le 17 Juil 2012
Modifié(e) : Sean de Wolski
le 17 Juil 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
le 17 Juil 2012
0 votes
1 commentaire
Walter Roberson
le 17 Juil 2012
pointsize = 8;
scatter3(X(:), Y(:), Z(:), pointsize, Z(:))
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!