How to delete polyline from Drawpolyline matlab function

2 次查看(过去 30 天)
I have list of polyline drawn using drawpolyline matlab function.
the list contains nearly 500 polylines , now if i want to delete 10th polyline from the 500 polylline , how can i do it ?
Further , after deleting now the list should reduce to 499 polyline, can anyone help me please ?

采纳的回答

SatyaPrakash Gupta
SatyaPrakash Gupta 2020-4-29
I have resolved this issue.
In drawpolyline function, we have a UserData attributes , so i use this UserData attribute to allocate each polyline with specific ID. further adding additional right click option by using "uimenu" for each polyline drawn, this option will have user define function
when this click uimenu option is selected, then collect all the attributes of the select polyline.
Now we can delete the selected polyline from the list of 500 polylline and update the table of polyline accordingly.

更多回答(1 个)

Geoff Hayes
Geoff Hayes 2020-4-28
SatyaPrakash - if you have an array of polyline objects and you want to delete the 10th item, then you could do
delete(polylineObjects(10)); % delete the polyline object
polylineObjects(10) = []; % remove the invalid polyline object from the array
The second line of code removes it from the array, reducing the array size to 499 elements.
  1 个评论
SatyaPrakash Gupta
SatyaPrakash Gupta 2020-4-29
编辑:SatyaPrakash Gupta 2020-4-29
@Geoff Hayes :
This was my initial approach with the known element/index number of the polyline.
But if the user do not know which element/index has to be delected, because he can pick any random element of polyline line from 500 polyline list , then in this case how do we know which element/index of the polyline has been selected by the user ?
you can refer my above answer comment where i have resolved it.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by