フィルターのクリア

How to add a point to mesh plot

20 ビュー (過去 30 日間)
Yong
Yong 2011 年 3 月 5 日
コメント済み: SAM Arani 2024 年 7 月 11 日 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 件のコメント
Matt Tearle
Matt Tearle 2011 年 3 月 5 日
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 2024 年 7 月 11 日 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].

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2011 年 3 月 5 日
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.

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by