counting number of textbox or patches in a matlab figure

1 Ansicht (letzte 30 Tage)
gummiyummi
gummiyummi am 25 Aug. 2020
Kommentiert: gummiyummi am 25 Aug. 2020
Is there a programmable method to count the number of patches or textboxes there are in a given figure, and then put the number in an array?

Antworten (1)

Jan
Jan am 25 Aug. 2020
Bearbeitet: Jan am 25 Aug. 2020
% All text boxes:
List1 = findall(HandleOfFigure, 'Type', 'uicontrol', 'Style', 'text')
Count1 = numel(List1)
% All patches:
List2 = findall(HandleOfFigure, 'Type', 'patch')
Count2 = numel(List2)
  1 Kommentar
gummiyummi
gummiyummi am 25 Aug. 2020
I get the following error:
"Undefined function or variable 'HandleOfFigure'

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by