Borrar filtros
Borrar filtros

How to add a point to mesh plot

21 visualizaciones (últimos 30 días)
Yong
Yong el 5 de Mzo. de 2011
Comentada: SAM Arani el 11 de Jul. de 2024
I have a .fig file which contains a mesh plot. I would like to know how I can add a new data point to the plot. For example, I would like to add (0, 0, 0) to the plot.
Thanks a lot.
  2 comentarios
Matt Tearle
Matt Tearle el 5 de Mzo. de 2011
Do you mean incorporate the new point into the mesh/surface? Or just add a single point marker onto the mesh?
SAM Arani
SAM Arani el 11 de Jul. de 2024
What if I want to add a single point marker onto the mesh?
Consider the case where I have found several indices indicating the peaks in my surface plotted using mesh() function. Is it possible to add these markers [(x_idx,y_idx,Z_val) Pairs] onto the plot?
Another Question is how to add a marker surface (as the thresholding surface) to this mesh plot? [Even A single Constant surface having the same Z value for all indices of x and y].

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 5 de Mzo. de 2011
If it is a plot produced by mesh() then you cannot add an individual point to it as part of the mesh: mesh() requires that the z values be a matrix.
mesh() produces a surfaceplot object. You can openfig() the .fig and findobj() on the figure looking for 'type','surface' to get the handle to the plot. You can then set() the XData, YData, and YZdata properties
mesh plots apply to grids. If you do not have a grid, then you would need to use one of the plotting routines that would create a patch object. patch objects contain information not just about the coordinates but about the interconnections of the points.

Categorías

Más información sobre Surface and Mesh 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