% 设置标题字体大小,字型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(get(gca,'YLabel'),'FontSize',10,'FontName','Times New Roman');%设置Y坐标标题字体大小,字型 set(gca,'FontName','Times New Roman','FontSize',10)%设置坐标轴字体大小,字型 text(0.3,1.2,'(a)','FontSize',10,'FontName','Times New Roman'); %设置文本字型字号 set(gca, 'XTick'...
set(get(gca,'YLabel'),'FontSize',10,'FontName','Times New Roman'); % 设置坐标轴字体大小,字型 set(gca,'FontName','Times New Roman','FontSize',10) text(0.3,1.2,'(a)','FontSize',10,'FontName','Times New Roman'); %设置文本字型字号 set(gca, 'XTick', [0 10 20 30 40 50...
set(get(gca,'title'),'FontSize',10,'FontName','宋体');%设置标题字体大小,字型 set(get(gca,'XLabel'),'FontSize',10,'FontName','Times New Roman');%设置X坐标标题字体大小,字型 set(get(gca,'YLabel'),'FontSize',10,'FontName','Times New Roman');%设置Y坐标标题字...
set(gca, 'FontSize', 12, 'Title', 'My Plot'); 4. 修改图例属性 set函数还可以用来修改图例的属性。例如,我们可以通过以下代码来修改图例的位置和字体大小: legend('A', 'B', 'C'); % 创建图例 legend('Location', 'NorthEast', 'FontSize', 10); % 修改图例位置和字体大小 四、总结 本文介绍...
和其它语言一样,set对对象进行设置,h是前一个图像的句柄,get(h,'LineWidth')得到原图形的线宽。set(h,'LineWidth',4*get(h,'LineWidth'))即设置图形的线宽为原来的4倍。
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...
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') %添加图例 ...
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') %添加图例 ...
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...