在 quiver3 plot matlab 中增加线条大小
Increase line size in quiver3 plot matlab
我在 matlab 中使用 quiver3()
命令并指定点及其法线。我指定了三个点和相应的 3 个法线,但是当我在现有图形上绘制时,线条看起来非常小。
如何增加行号?在LineSpec中,他们只给出线宽选项。我使用这样的命令:
quiver3(pts(:,1),pts(:,2),pts(:,3),n(:,1),n(:,2),n(:,3),'LineWidth',3,'color','g');
pts
和 n
是 3x3 矩阵。
您可以在此 link line size in quiver 3 中找到解决方案。将 'AutoScale'
属性 设置为 'off'
并调整矢量范数以控制线条大小似乎是解决方案。
我在 matlab 中使用 quiver3()
命令并指定点及其法线。我指定了三个点和相应的 3 个法线,但是当我在现有图形上绘制时,线条看起来非常小。
如何增加行号?在LineSpec中,他们只给出线宽选项。我使用这样的命令:
quiver3(pts(:,1),pts(:,2),pts(:,3),n(:,1),n(:,2),n(:,3),'LineWidth',3,'color','g');
pts
和 n
是 3x3 矩阵。
您可以在此 link line size in quiver 3 中找到解决方案。将 'AutoScale'
属性 设置为 'off'
并调整矢量范数以控制线条大小似乎是解决方案。