How to clear data from plot in Matlab GUI

 채택된 답변

Image Analyst
Image Analyst 2013년 8월 14일
편집: Image Analyst 2013년 8월 14일

26 개 추천

Perhaps try this:
axes(handles.averSpec); % Make averSpec the current axes.
cla reset; % Do a complete and total reset of the axes.
If you want to clear just the curve, bars, surfaces, or whatever you plotted, and not the labels, tick spacing etc., then get the handle to it when you created it and then delete it
hPlotData = plot(....... whatever
% Now get rid of it.
delete(hPlotData);

댓글 수: 7

Jonasz
Jonasz 2013년 8월 14일
I don't know but it didn't work.
Man, it really helped me! Thanks!
You're welcome. Can you go ahead and mark my Answer as "Accepted" then?
Robert
Robert 2016년 4월 9일
This worked for me.
thanks man you saves the world
awesome, thanks so much!
Holy crap, thank you sooo much

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

추가 답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 8월 14일

2 개 추천

You can use cla

댓글 수: 5

Jonasz
Jonasz 2013년 8월 14일
편집: Azzi Abdelmalek 2013년 8월 14일
I am using and nothing ..
function clear_Callback(hObject, eventdata, handles)
% hObject handle to clear (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
cla(handles.averSpec);
This is starting when you press ' clear' button
Is there any error message ?
Jonasz
Jonasz 2013년 8월 14일
No but nothing happen plot stays the same.
same issue
If you tried my answer of using
cla reset;
and that did not wipe the axes totally clean, down to a white rectangle with axes in the 0-1 range, then call the Mathworks because your cla function is corrupted. Or you've overwritten it with your own function called cla.

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

David Sanchez
David Sanchez 2013년 8월 14일

0 개 추천

Try with
clf(handles.my_axis_handle)
where my_axis_handle is the handle of the axis on your GUI.

댓글 수: 2

Jonasz
Jonasz 2013년 8월 14일
It clear all the figure except my axis I want to clear. But i want to clear the data not the whole axis.
Robert
Robert 2016년 4월 9일
This is exactly what happened to me. When i used this line it cleared everything except what i wanted it to clear. When i type in the handle of the axes i want to clear that is the only one it left alone and cleared the rest of the guy. Any ideas?

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

카테고리

도움말 센터File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기

제품

질문:

2013년 8월 14일

댓글:

2020년 12월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by