我正在使用surfc
绘制曲面,我无法看到我的轴标签。
您能否帮助我将xlabel
和ylabel
与轴对齐并尝试将其可视化?
surf(X,Y,surface);
colorbar
shading interp
xlabel('Induction factor a1');
ylabel('Induction factor a2');
zlabel('Coefficient')
title('Curve')
答案 0 :(得分:1)
制作图像后,只有一个选项。顶部有旋转按钮,您可以根据需要使用它并检查对齐情况。
希望有所帮助
答案 1 :(得分: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。