set(gca, 'YLim', [-1 1]) 3. 'XTick'和'YTick':用于设置坐标轴的刻度。例如: set(gca, 'XTick', [0:2:10]) set(gca, 'YTick', [-1:0.5:1]) 4. 'FontSize':用于设置坐标轴标签和刻度的字体大小。例如: set(gca, 'FontSize', 12) 5. 'LineWidth':用于设置坐标轴线的宽度。例如: se...
matlab set(gca,'FontSize',10) %是设置刻度字体大小 http://t.cn/A6qkEoDd plot画出来的图的空白边缘消除 set(gca,'looseInset',[0 0 0 0]) http://t.cn/A6badm6k 图例legend设置字体、大小、字体粗细等 h=lege...
% 设置标题字体大小,字型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,'XLabel'),'FontSize',10,'FontName','Times New Roman');%设置X坐标标题字体大小,字型 set(get(gca,'YLabel'),'FontSize',10,'FontName','Times New Roman');%设置Y坐标标题字体大小,
set(get(gca,'title'),'FontSize',10,'FontName','宋体');%设置标题字体大小,字型set(get(gca,'XLabel'),'...
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 60 70 80 90]) %设置X坐标轴刻度数据点位置 ...
set(gca, 'FontSize', 12, 'Title', 'My Plot'); 4. 修改图例属性 set函数还可以用来修改图例的属性。例如,我们可以通过以下代码来修改图例的位置和字体大小: legend('A', 'B', 'C'); % 创建图例 legend('Location', 'NorthEast', 'FontSize', 10); % 修改图例位置和字体大小 四、总结 本文介绍...
fontsize字体大小(单位由Fontunits决定) fontunits字体单位(points/normalized/inches/centimeters/pixels) fontweight字体粗细(normal/bold/light/demi) gridlinestyle决定坐标轴网格线的样式,‘-’为实线‘- -’为虚线‘:’为点线‘-.’为点虚线 plot(1:10);grid on;set(gca,'gridlinestyle','-.');将当前坐标...
set(gca, 'YTick', [-1:0.5:1]) 4. 'FontSize':用于设置坐标轴标签和刻度的字体大小。例如: set(gca, 'FontSize', 12) 5. 'LineWidth':用于设置坐标轴线的宽度。例如: set(gca, 'LineWidth', 2) 6. 'Color':用于设置坐标轴的背景颜色。例如: set(gca, 'Color', [0.8 0.8 0.8]) 除了上述属...