0

以下代码绘制了断开连接的向量,而它们应该相互接触。这是一个错误还是我错过了什么?

quiver3(0,0,0,50,50,50);
text(30,30,30,' \leftarrow Views and Eq. returns','FontSize',11, 'FontWeight','bold', 'FontName', 'Palatino Linotype')
hold on
quiver3(0,0,0, 50, 50, 0);
text(30,30,0,' \leftarrow Expected returns (projection/unknows)','FontSize',11, 'FontWeight','bold', 'FontName', 'Palatino Linotype')
quiver3(50,50,0, 0, 0, 50);

grid on
4

1 回答 1

1

我在 R2013a 中得到了同样的结果。尝试设置 scale 参数,即可选的第七个参数,等于 1:

figure;
quiver3(0,0,0, 50,50,50, 1);
text(30,30,30,' \leftarrow Views and Eq. returns','FontSize',11, 'FontWeight','bold', 'FontName', 'Palatino Linotype')
hold on
quiver3(0,0,0, 50,50,0, 1);
text(30,30,0,' \leftarrow Expected returns (projection/unknows)','FontSize',11, 'FontWeight','bold', 'FontName', 'Palatino Linotype')
quiver3(50,50,0, 0,0,50, 1);
grid on

根据文档,可以使用一些自动缩放。不知道为什么默认值不是一个。您还可以尝试通过使用零缩放值来禁用缩放——这对于您的应用程序类型甚至可能更安全。

于 2013-10-24T17:54:28.070 回答