suptitle in 2016a
이전 댓글 표시
I have been using suptitle in older versions of matlab.
This seems to have disappeared from 2016a - am I missing something or has it gone?
채택된 답변
추가 답변 (3개)
Steven Lord
2019년 4월 11일
If you are using release R2018b or later, I recommend using the sgtitle function instead of suptitle.
subplot(2, 2, 1);
plot(1:10);
subplot(2, 2, 4);
surf(peaks);
sgtitle('$\hat{a} + \frac{b}{c}$', 'Interpreter', 'LaTeX')
댓글 수: 1
Bart Van Hove
2019년 4월 12일
Brilliant! Thanks for the new feature
Azzi Abdelmalek
2016년 3월 22일
0 개 추천
There is no a function named suptitle in Matlab. Maybe you need to use subplot command
elijah tapiwa chipato
2016년 12월 16일
편집: elijah tapiwa chipato
2016년 12월 16일
0 개 추천
Is it possible to put a hat, bar or dot on Greek letters when using suptitle
댓글 수: 1
Bart Van Hove
2019년 4월 11일
편집: Bart Van Hove
2019년 4월 11일
I'm not sure you can use the Latex interpreter, but one feature this (practically undocumented function) supports is multiple lines when given a cell array of strings. I find the main downside of suptitle, apart from being non-standard, is the excessive amount of space it allocates for itself on a figure, shrinking the subplots below it.
카테고리
도움말 센터 및 File Exchange에서 Dates and Time에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!