필터 지우기
필터 지우기

how to invisible plot in gui which contains hold on?

조회 수: 5 (최근 30일)
alireza kooshafar
alireza kooshafar 2018년 12월 14일
댓글: alireza kooshafar 2018년 12월 14일
I have a plot which is in for loop with hold on like this:
for i=1:size(V)
handles.p2=plot(........)
hold on
end
i want to let the user visible or invisible it by toggle button like this:
h = get(handles.t1,'Value');
if h==1
set(handles.p2,'visible','on')
else
set(handles.p2,'visible','off')
end
guidata(hObject, handles)
the problem is that it works just for the last itteration of for loop not for the hole plot
tnx for help

채택된 답변

Cris LaPierre
Cris LaPierre 2018년 12월 14일
편집: Cris LaPierre 2018년 12월 14일
Do you want to hide the lines or the entire axes?
The problem is you are overwriting the handle to the previous plot each loop. If you want to capture them all, you need to create a vector of handles.
for i=1:size(V)
handles.p2(i)=plot(........)
hold on
end
The, to set them all off in one command, you can use
set(handles.p2,'Visible','off')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by