0

I am ploting a surface using surfc and I can not see my axis labels.

enter image description here

Can you help me aligning the xlabel and ylabel to the axes and try to visualize them?

surf(X,Y,surface);
colorbar
shading interp
xlabel('Induction factor a1');
ylabel('Induction factor a2');
zlabel('Coefficient')
title('Curve')
4

2 回答 2

1

图像制作完成后,只有一个选项。顶部有旋转按钮,您可以根据需要使用它并检查是否对齐。

希望有帮助

于 2013-11-09T15:10:55.817 回答
0

您可以在生成图像后旋转图像,也可以通过以下代码在代码中指定要旋转的角度,

     set(get(gca,'Induction factor a1'),'rotation',thetax);
     set(get(gca,'Induction factor a2'),'rotation',thetay);
     set(get(gca,'Coefficient'),'rotation',thetaz);

您可以指定旋转 thetaz、thetay 和 thetaz 中标签所需的角度。

于 2013-11-09T15:51:36.020 回答