我正在做以下事情(这是一个简单的例子来说明问题):
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
答案 0 :(得分:3)