2

我在matlab中有3维的轨迹信息。这些是某人正在做的一种姿态。当我使用plot3连接matlab中的点时,我可以很好地看到轨迹。然而,轨迹是情节中的一条线,但我不知道手势是在哪个方向做出的,因为时间没有可视化。是否可以在 3d 图中将其可视化(其中尺寸为 x、y 和 z)?例如,开头的颜色是鲜红色,结尾的颜色是黑色。

谢谢你的帮助,

赫克托

4

1 回答 1

4

您需要comet3情节(如果您不介意动画)。

如果你介意动画,并且你正在寻找一个静态人物,我会使用quiver.

例子:

% value of the parameter in the parametric equation
t = 0:0.5:2*pi;

% modified coordinate axes
u = [1 0 0].';
v = [0 2 0].';

% coordinates of the ellipse
Ell  = bsxfun(@plus, bsxfun(@times, u, cos(t)), bsxfun(@times, v, sin(t)));

% difference vectors between all data points will be used as "velocities"
dEll = diff(Ell, 1,2);

% Quiver the ellipse
quiver3(...
    Ell(1,1:end-1), Ell(2,1:end-1), Ell(3,1:end-1), ...
    dEll(1,:), dEll(2,:), dEll(3,:), ...
    2,  'r')  % = scale, LineSpec

axis tight equal

结果:

在此处输入图像描述

于 2013-06-11T20:15:04.680 回答