clcclear allfigure(1);x=0:0.2:8;plot(x,sin(x),'-k', 'LineWidth',4);set(gca,'linewidth',1,'fontsize',20,'fontname','Times');%依次设置坐标轴的属性分别为:坐标轴的线宽(2),坐标轴的刻度字号大小(20),坐标轴的刻度字体(罗马体)。legend('sinx');grid onxlabel('x','fontname', 'times new roman','fontSize',20);%设置坐标轴的标签字号大小(20)ylabel('y=sinx','fontname', 'times new roman','fontSize',20);set(gca,'XTick',[0:1:8]) %¸ %改变x轴坐标间隔显示 这里间隔为1
plot画图实例