How to Center Align the title for a figure?
35 次查看(过去 30 天)
显示 更早的评论
This is the code I use to title my figures:
title('Agent 1 \newline Probability Density Function - Step 1','FontWeight','bold',... 'FontSize',12,... 'FontName','Times New Roman');
The problem is Matlab left-align the text in title:
Agent 1 Probability Density Function - Step 1
which is ugly!. My question is How can I Center-Align it as:
Agent 1
Probability Density Function - Step 1
Thanks, Hadi
0 个评论
采纳的回答
Star Strider
2014-12-24
编辑:Star Strider
2014-12-24
Try this:
ttl = sprintf('Agent 1\nProbability Density Function - Step 1');
title(ttl,'FontWeight','bold', 'FontSize',12, 'FontName','Times New Roman');
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Labels and Annotations 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!