Vertical Title in subplot

조회 수: 13 (최근 30일)
RuiQi
RuiQi 2017년 1월 23일
댓글: RuiQi 2017년 1월 23일
How can I add a vertical title in subplot like in the image below ? I want the title Car at the left side of the plot to be bigger. Ignore the bolded title Car on the top.

채택된 답변

KSSV
KSSV 2017년 1월 23일
figure
subplot(1,3,1)
plot(1:10)
ylabel({'\fontsize{20}Car','\fontsize{12}Recall'})
subplot(1,3,2)
plot(1:10)
ylabel({'\fontsize{12}Recall'})
subplot(1,3,3)
plot(1:10)
ylabel({'\fontsize{12}Recall'})
  댓글 수: 1
RuiQi
RuiQi 2017년 1월 23일
cool thanks as always !

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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