Borrar filtros
Borrar filtros

How to delete polyline from Drawpolyline matlab function

2 visualizaciones (últimos 30 días)
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 ?

Respuesta aceptada

SatyaPrakash Gupta
SatyaPrakash Gupta el 29 de Abr. de 2020
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.

Más respuestas (1)

Geoff Hayes
Geoff Hayes el 28 de Abr. de 2020
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 comentario
SatyaPrakash Gupta
SatyaPrakash Gupta el 29 de Abr. de 2020
Editada: SatyaPrakash Gupta el 29 de Abr. de 2020
@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.

Iniciar sesión para comentar.

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by