MATLABxlable的使⽤
x=0:0.01:2*pi;
y=sin(x);
plot(x,y)
xlabel('正弦函数')
效果:
用subplot函数
多⾏
xlabel({'正弦函数','sin'})
特殊字符
xlabel({'正弦函数','sin','-2\pi \leq x \leq 2\pi'})
改变⼤⼩及加粗
xlabel({'正弦函数','sin','-2\pi \leq x \leq 2\pi'},'FontSize',12,'FontWeight','bold')
改变字体及颜⾊
xlabel({'正弦函数','sin','-2\pi \leq x \leq 2\pi'}, 'FontSize',12,'FontWeight','bold','color','r','Fontname','STFangSong')
subplot()
x=0:0.01:2*pi;
y=sin(x);
subplot(2,3,1)
plot(x,y)
xlabel('正弦函数')
subplot(2,3,2)
plot(x,y)
xlabel({'正弦函数','sin'})
subplot(2,3,3)
plot(x,y)
xlabel({'正弦函数','sin','-2\pi \leq x \leq 2\pi'})
subplot(2,3,4)
plot(x,y)
xlabel({'正弦函数','sin','-2\pi \leq x \leq 2\pi'},'FontSize',12,'FontWeight','bold')
subplot(2,3,5)
plot(x,y)
xlabel({'正弦函数','sin','-2\pi \leq x \leq 2\pi'}, 'FontSize',12,'FontWeight','bold','color','r','Fontname','STFangSong')
参考:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。