Matlab:在xlabel和ylabel上改变字体大小

时间:2013-04-24 11:23:32

标签: matlab ubuntu plot visualization

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

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

它产生: enter image description here

正如您所见,'FontSize'无效。我还得到了下面显示的xlabel的属性:

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

1 个答案:

答案 0 :(得分:3)

您必须安装包:

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

this thread中建议,因为Ubuntu 12.04没有附带MATLAB特定字体。