Figure count
조회 수: 112 (최근 30일)
이전 댓글 표시
Is there a way of counting the number of figure windows currently open? I am trying to clear a set of figure windows without closing them.
댓글 수: 1
Mary
2023년 3월 10일
편집: Steven Lord
2023년 3월 10일
Yes, you can use the 'numel' and 'findall' functions in MATLAB [SL: removed URL unrelated to question] to count the number of open figure windows.
채택된 답변
Sean de Wolski
2011년 12월 21일
h = findobj('type','figure');
n = length(h);
And you can set the properties of all three at once using their handles - stored in h.
댓글 수: 3
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Object Properties에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!