How to show axes when I build a GUI Scatter plot

조회 수: 6 (최근 30일)
Jiali
Jiali 2015년 6월 14일
답변: Walter Roberson 2015년 6월 14일
how to show axes and minortick when I build a GUI Scatter plot? By using the following code, no axes are shown in GUI. Please help me. I appreciate your efforts.
function Axes1_CreateFcn(hObject, eventdata, handles)
axis equal;
function Load_Callback(hObject, eventdata, handles)
axes(handles.Axes1);
hold on;
if ~isempty(A)
scatter(A(:,1),A(:,2),25,'b','filled');
scatter(B(:,1),B(:,2),25,'g','filled');
end
% here, A,B are data matrix that I want to plot

채택된 답변

Walter Roberson
Walter Roberson 2015년 6월 14일
function Load_Callback(hObject, eventdata, handles)
axes(handles.Axes1);
if ~isempty(A)
scatter(A(:,1),A(:,2),25,'b','filled');
hold on;
scatter(B(:,1),B(:,2),25,'g','filled');
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Grid Lines, Tick Values, and Labels에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by