如何设置图片标题的字体大小?
    22 views (last 30 days)
  
       Show older comments
    
    MathWorks Support Team
    
 on 24 Sep 2020
  
    
    
    
    
    Answered: MathWorks Support Team
    
 on 24 Sep 2020
            我画了一个图,然后用title添加标题,但希望标题的字体大一些。
Accepted Answer
  MathWorks Support Team
    
 on 24 Sep 2020
        有两种方法来实现,不仅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 Comments
More Answers (0)
See Also
Categories
				Find more on Dynamic System Models in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!