1
我想刪除的情節和它的彩條(其實我想刪除一個陰謀的一切,但接縫是幾乎不可能的,見make axes invisible or delete plot completely)爲什麼劇情句柄總是無效?
我這樣做:
在情節
hplot = pcolor(xAxis, yAxis, Data2D);
hcb = colorbar;
handles.image.hColorbar = hcb;
handles.image.hplot = hplot;
guidata(handles.output,handles);
在GUI後:
if (isfield(handles,'image') && isfield(handles.image,'hplot'))
if (handles.image.hplot~=0)
delete(handles.image.hplot);
delete(handles.image.hColorbar);
handles.image.hplot = 0;
end
end
它適用於delete(handles.image.hplot)
但沒有FO r handles.image.hColorbar
無效句柄 - 爲什麼?