Plot not disappearing when using STOP button and visible off
4 次查看(过去 30 天)
显示 更早的评论
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
%handles.stop_now=1;
%guidata(hObject, handles);
set(handles.pushbutton3,'userdata',1)
set(handles.axes4,'visible','off');
I have created pushbutton to stop the programme. Simultaneously it should make the plot in handles.axes4 invisible. However the axes get invisbile put plot remains. How to rectify the same
0 个评论
采纳的回答
Mehmed Saad
2021-3-8
Read this
Try this
set(handles.axes4,'visible','off');
set(get(handles.axes4,'Children'),'Visible','off')
I think it will work
5 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!