Grouping Plots within an Axes
조회 수: 5 (최근 30일)
이전 댓글 표시
Hello, I'm using plot() to draw elements of several physical mechanisms onto a set of UIAxes. Some elements might be represented as a single line between two points, and others might be as a triangle (three points), and others might use more points. As part of my app, I need to be able to regularly delete/re-draw various groups of elements. I'm currently assigning each element to a variable e.g. Element1 = plot(Element1_x, Element1_y), so that I can later use delete(Element1) when I need to delete/re-draw it. However this process is messy, as there are dozens of elements. I'm wondering if there is a way to group up multiple plots within one variable, so that I can simply use delete(Group1) to delete a specific group of plots from my axes.
댓글 수: 0
채택된 답변
Kevin Chng
2018년 10월 19일
Use indexing,
Element(i,num_group) = plot(Element1_x, Element1_y);
when delete all your elements in group 1,
delete(Element(:,1));
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!