set(get(gca,'title'),'FontSize',10,'FontName','宋体'); % 设置X坐标标题字体大小,字型 set(get(gca,'XLabel'),'FontSize',10,'FontName','Times New Roman'); % 设置Y坐标标题字体大小,字型 set(get(gca,'YLabel'),'FontSize',10,'FontName','Times New Roman'); % 设置坐标轴字体大小,...
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','Second','Third') %添加图例 title('Bessel Functions') %添加标题 [y,ix]=min...