set(gca,'FontSize',10) %是设置刻度字体大小O网页链接plot画出来的图的空白边缘消除set(gca,'looseInset',[0 0 0 0])O网页链接图例legend设置字体、大小、字体粗细等h=legend('Initialize (x_0, y_0)=(4, 0) \rm{m}','Initialize (x_0, y_0)=(0, 8) \rm{m}');set(h,'FontName','...
set(get(gca,'XLabel'),'FontSize',10,'FontName','Times New Roman'); % 设置Y坐标标题字体大小,字型 set(get(gca,'YLabel'),'FontSize',10,'FontName','Times New Roman'); % 设置坐标轴字体大小,字型 set(gca,'FontName','Times New Roman','FontSize',10) text(0.3,1.2,'(a)','FontSi...
axis([0 12 -0.5 1]) %设置坐标轴范围 grid on X=0:1:12; Y=-0.5:0.25:1; set(gca,'xtick',X,'ytick',Y) %设置网格的显示格式,gca获取当前figure的句柄 set(xlabel('Time'),'FontSize',12,'Color','r') y=ylabel('Amplitude'); set(y,'FontSize',12,'Color','g') legend(h,'First...