필터 지우기
필터 지우기

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 CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by