Clear Filters
Clear Filters

How to add a point to mesh plot

19 views (last 30 days)
Yong
Yong on 5 Mar 2011
Commented: SAM Arani on 11 Jul 2024 at 14:03
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 Comments
Matt Tearle
Matt Tearle on 5 Mar 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 on 11 Jul 2024 at 14:03
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].

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 5 Mar 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.

Tags

Community Treasure Hunt

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

Start Hunting!