Plot not disappearing when using STOP button and visible off

조회 수: 4 (최근 30일)
Avinav Kumar
Avinav Kumar 2021년 3월 8일
댓글: Mehmed Saad 2021년 3월 9일
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

채택된 답변

Mehmed Saad
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
Avinav Kumar
Avinav Kumar 2021년 3월 8일
I meant that a graph is being generated in handles.axes4 already. If i want to print that graph or save it can it be done
Mehmed Saad
Mehmed Saad 2021년 3월 9일
do you mean shift that to new figure
or save it as a figure

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Specifying Target for Graphics Output에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by