我想将大量线段收集到一个组中,以使绘图浏览器对象更有条理。以下内容并不符合我的预期。
h_ax = axes;
hold on
hg = hggroup( h_ax, 'DisplayName' , 'plotGroup' );
plot( [1,2], [4 ,8] , 'Parent' , hg , 'DisplayName', 'line1')
plot( [2,6], [10,12] , 'Parent' , hg , 'DisplayName', 'line2')
hg =
Annotation: [1×1 matlab.graphics.eventdata.Annotation]
BeingDeleted: 'off'
BusyAction: 'queue'
ButtonDownFcn: ''
Children: [2×1 Line]
CreateFcn: ''
DeleteFcn: ''
DisplayName: 'plotGroup'
HandleVisibility: 'on'
HitTest: 'on'
Interruptible: 'on'
Parent: [1×1 Axes]
PickableParts: 'visible'
Selected: 'off'
SelectionHighlight: 'on'
Tag: ''
Type: 'hggroup'
UIContextMenu: [0×0 GraphicsPlaceholder]
UserData: []
Visible: 'on'
当您在图编辑窗口的图形编辑窗口的最右边查看时,您只会找到轴。如何让我的小组出现在情节浏览器中?理想情况下,它将是可折叠的树状视图。 Matlab是否支持这种行为?