How to set all the labels for 2 different axes in matlab gui?
조회 수: 1 (최근 30일)
이전 댓글 표시
hi all
i have 2 different axes in matlab gui: 1)xlabel('Radius'), ylabel ('Radius'), zlabel ('E-field') 2)xlabel('Diameter'), ylabel('Power')
but how can i set in the OpeningFcn on axes1 and axes2??
댓글 수: 0
채택된 답변
Wouter
2013년 3월 20일
like this:
xlabel(handles.axes1,'Radius')
ylabel(handles.axes1,'Radius')
zlabel(handles.axes1,'E-field')
xlabel(handles.axes2,'Diameter')
ylabel(handles.axes2,'Power')
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Labels and Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!