matlab绘图如何定义坐标轴上的数字字体⼤⼩⽅法⼀:在画完图的Figure窗⼝⾥,通过菜单-Font-Font Size即可设置。
=================================================================
⽅法⼆:⽤plot命令画完图后,⽤如下命令:set(gca,'FontSize',20);即可完成菜单同样效果。
下⾯是既能改变坐标数字字体,⼜能改变坐标轴字体
figure(7);fontweight属性bold
subplot(2,1,2);
plot(time,u,'r');
xlabel('时间(秒)');ylabel('控制量输⼊');
set(gca,'FontSize',14); % 设置⽂字⼤⼩,同时影响坐标轴标注、图例、标题等。
set(get(gca,'XLabel'),'FontSize',14);%图上⽂字为8 point或⼩5号
set(get(gca,'YLabel'),'FontSize',14);
magnifyOnFigure %局部放⼤上图
subplot(2,1,1);
plot(time,u,'r');
xlabel('时间(秒)');ylabel('控制量输⼊');
set(gca,'FontSize',14); % 设置⽂字⼤⼩,同时影响坐标轴标注、图例、标题等。
set(get(gca,'XLabel'),'FontSize',14);%图上⽂字为8 point或⼩5号
set(get(gca,'YLabel'),'FontSize',14);
set(gca,'FontName','Times New Roman','FontSize',14)设置坐标轴刻度字体名称,⼤⼩
%‘FontWeight’,’bold’ 加粗 ‘FontAngle’,’italic’ 斜体
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论