Matlab的:在xlabel和ylabel改变字体大小(Matlab: changing font

2019-10-18 02:05发布

我做了以下的(这是一个简单的例子来说明问题):

a = [1,3,4];
b = [1,4,5];
plot(a,b,'LineWidth',4);
xlabel('recall','FontSize',35);
ylabel('precision','FontSize',4);

它产生:

正如你所看到的'FontSize'是有没有效果。 我也得到了如下图所示的xlabel的属性:

xl = xlabel('recall','FontSize',35);
get(xl)
    FontAngle = normal
    FontName = Helvetica
    FontSize = [35]
    FontUnits = points
    FontWeight = normal

Answer 1:

你必须安装软件包:

  • 中的xfonts-100dpi的
  • 中的xfonts-75dpi。

在提出这个线程 ,因为Ubuntu的12.04不附带MATLAB特定的字体。



文章来源: Matlab: changing font size on xlabel and ylabel