time | Calls | line |
|---|
| | 748 | function sibs = datasiblings(parent)
|
| | 749 | % Returns any siblings which do not have the appdata 'NonDataObject'. In
|
| | 750 | % other words, returns "real" axes, not things like legend or scribe objects.
|
| | 751 | %
|
0.002 | 4 | 752 | sibs = parent.Children;
|
< 0.001 | 4 | 753 | nondatachild = logical([]);
|
< 0.001 | 4 | 754 | for i=length(sibs):-1:1
|
< 0.001 | 6 | 755 | nondatachild(i) = isappdata(sibs(i),'NonDataObject');
|
< 0.001 | 6 | 756 | end
|
< 0.001 | 4 | 757 | sibs(nondatachild) = [];
|
< 0.001 | 4 | 758 | end
|
Other subfunctions in this file are not included in this listing.