title that spans subplots
古いコメントを表示
Hi, I am a newbie. How can I add a title so that it spans across two graphs plotted with subplot? (I can add titles to individual plots and even add a title to a figure window but neither of these is what I want). Thanks
採用された回答
その他の回答 (4 件)
Sean de Wolski
2011 年 8 月 12 日
How about with super title!
doc suptitle
What it looks like:

3 件のコメント
Oleg Komarov
2011 年 8 月 12 日
where do you find suptitle?
Sean de Wolski
2011 年 8 月 12 日
Oh. I thought it was standard.
It's in the Bio toolbox as part of a yeast infection demo.
*A word may have been inserted for humor's sake.
Stewart Wiseman
2011 年 8 月 13 日
Steven Lord
2018 年 10 月 23 日
4 投票
the cyclist
2011 年 8 月 12 日
One way to do this is with the text() command:
>> subplot(1,2,1), plot(1:10)
>> subplot(1,2,2), plot(1:10)
>> text(-10,10.2,'Test title spanning two subplots -- Some fine tuning will be required')
>>
In this case, the text positioning is relatively to the second axes.
Shahzad ali Zardari
2018 年 10 月 23 日
if true
% code
end
カテゴリ
ヘルプ センター および File Exchange で Title についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!