z标签散点图

时间:2014-01-30 09:53:23

标签: matlab scatter-plot

我在绘制三维散点图时遇到了问题。 我无法理解为什么z标签被屏蔽

你可以帮帮我吗?

scatter3(x(:,1),x(:,2),x(:,3),50,index_color,'filled')

xlabel('1$^{st}$ component','Interpreter','LaTex','FontSize',14);
ylabel('2$^{nd}$ component','Interpreter','LaTex','FontSize',14);
zlabel('3$^{rd}$ component','Interpreter','LaTex','FontSize',14);

我正在使用ubuntu和matlab R2012b

enter image description here

1 个答案:

答案 0 :(得分:1)

我在使用LaTeX解释器时遇到了好运(在Windows中)。请尝试使用TeX解释器:

xlabel('1^{st} component','Interpreter','tex','FontSize',14);
ylabel('2^{nd} component','Interpreter','tex','FontSize',14);
zlabel('3^{rd} component','Interpreter','tex','FontSize',14);