Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
I want to turn axis for my both axes. But the following code work only for axes 2. Can anyone tell why is it so?
조회 수: 1 (최근 30일)
이전 댓글 표시
% if true
% code
% end
function pushbutton1_Callback(hObject, eventdata, handles)
y1=randn(40);
handles.y1=y1;
y2=randn(40);
handles.y2=y2;
guidata(hObject, handles);
function pushbutton2_Callback(hObject, eventdata, handles)
y1=handles.y1;
y2=handles.y2;
imagesc(y1,'parent',handles.axes2)
axis off
imagesc(y2,'parent',handles.axes1)
axis off
댓글 수: 0
답변 (1개)
Greg
2017년 11월 2일
axis off
Operates on the "current axes" (that returned by the gca function). Nowhere in your code do you set (change) the active axes, running axis off twice produces redundant results.
As with your calls to imagesc(), supply the axes handle explicitly in your calls to axis().
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!