How to delete polyline from Drawpolyline matlab function
古いコメントを表示
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 ?
採用された回答
その他の回答 (1 件)
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
2020 年 4 月 29 日
編集済み: SatyaPrakash Gupta
2020 年 4 月 29 日
カテゴリ
ヘルプ センター および File Exchange で Design Condition Indicators Interactively についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!