MATLAB:添加图标题轴标签图例更改字体大小
Posted 没事就要敲代码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MATLAB:添加图标题轴标签图例更改字体大小相关的知识,希望对你有一定的参考价值。
1 添加标题
title
:向图中添加标题
示例:
clc;
clear;
% 绘制
x = linspace(0,2*pi);
y = sin(x) - tan(sin(x));
plot(x,y)
title('y = sin(x)-tan(sin(x))')
结果展示:
2 添加轴标签
xlabel
:x轴标签
ylabel
:y轴标签
zlabel
:z轴标签(plot3)
示例:
clc;
clear;
% 绘制
x = linspace(0,2*pi);
y = sin(x)-tan(sin(x));
plot(x,y)
title('y = sin(x) - tan(sin(x))')
xlabel('X(m)')
ylabel('Y(m)')
结果展示:
3 添加图例
legend
:按绘图顺序添加图例
示例:
clc;
clear;
% 绘制
x = linspace(0,2*pi);
y = sin(x)-tan(cos(x));
plot(x,sin(x))
hold on
plot(x,cos(x))
hold on
plot(x,tan(cos(x)))
hold on
plot(x,y)
hold off
title('添加图例')
xlabel('X(m)')
ylabel('Y(m)')
% 按绘图顺序添加图例
legend('y = sin(x)','y = cos(x)','y = tan((cos(x))','y = sin(x) - tan(cos(x))')
结果展示:
4 更改标题、标签、图例的字体大小
'FontSize'
字号属性
示例:
clc;
clear;
% 绘制
x = linspace(0,2*pi);
y = sin(x)-tan(cos(x));
plot(x,sin(x))
hold on
plot(x,cos(x))
hold on
plot(x,tan(cos(x)))
hold on
plot(x,y)
hold off
title('添加图例','FontSize',20)
xlabel('X/(m)','FontSize',15)
ylabel('Y/(m)','FontSize',10)
% 按绘图顺序添加图例
legend('y = sin(x)','y = cos(x)','y = tan((cos(x))','y = sin(x) - tan(cos(x))')
结果展示:
相关链接
https://ww2.mathworks.cn/help/matlab/creating_plots/add-title-axis-labels-and-legend-to-graph.html
以上是关于MATLAB:添加图标题轴标签图例更改字体大小的主要内容,如果未能解决你的问题,请参考以下文章