如何设置图片标题的字体大小?

37 次查看(过去 30 天)
MathWorks Support Team
我画了一个图,然后用title添加标题,但希望标题的字体大一些。

采纳的回答

MathWorks Support Team
有两种方法来实现,不仅title的标题字体能修改,xlabel等坐标轴说明也可以。
1)使用figure对象及其子对象的属性:
>>plot(1:10)
>>title('My title')
>>xlabel('My label')
>>ax = gca;
>>ax.FontSize = 16;
2)在绘图的时候指定:
>>plot(1:10)
>>title('My title','FontSize',16)
>>xlabel('My label','FontSize',10)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Dynamic System Models 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!