フィルターのクリア

how to label the two y axes of a for example 5*2 subplot?

2 ビュー (過去 30 日間)
sH
sH 2016 年 6 月 17 日
回答済み: KSSV 2016 年 6 月 17 日
how to label the two y axes of a for example 5*2 subplot?

回答 (1 件)

KSSV
KSSV 2016 年 6 月 17 日
You can use label immediately after using subplot(). Eg:
subplot(211)
xlabel('x211')
ylabel('y211')
subplot(212)
xlabel('x212')
ylabel('y212')

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by