フィルターのクリア

How to set all the labels for 2 different axes in matlab gui?

2 ビュー (過去 30 日間)
William
William 2013 年 3 月 20 日
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??

採用された回答

Wouter
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')
  1 件のコメント
William
William 2013 年 3 月 20 日
thanks! i did that too! :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Objects についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by