向量序列的轨迹

问题描述 投票:0回答:0

请告诉我如何绘制向量序列 {x(t), 1<=t<=115} of 3-dimensional row vectors in 3-dimensional space using scilab. The formula for x(t) is complex, so I store the result of the calculation in a 115 x 3-dimensional matrix x_M. x_M(t,:) means x(t). The command below will create a graph enclosed by a line connecting x_M(1,:) and x_M(115,:). I don't know what to use, if it is correct to use something other than plot3d.

plot3d(x_M(:1),x_M(:,2),x_M(:,3),leg="x1@x2@x3")

scilab
© www.soinside.com 2019 - 2024. All rights reserved.