Is there a way to add a global subtitle over a group of subplots?

조회 수: 88 (최근 30일)
Muna Awajan
Muna Awajan 2022년 5월 19일
편집: Muna Awajan 2022년 5월 19일
Is the a way to add a global subtitle over a group of subplots? I know in the case of a title sgtitle works, but what about subtitle?

채택된 답변

KSSV
KSSV 2022년 5월 19일
figure
subplot(221)
title('First Subplot')
subplot(222)
title('Second Subplot')
subplot(223)
title('Third Subplot')
subplot(224)
title('Fourth Subplot')
sgtitle(sprintf('Main title\n subtitle'))

추가 답변 (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