Creating a vector from two points using 3 coordinates

26 次查看(过去 30 天)
I'm trying to create two vectors from two points created from a set of data. The data set contains 3106 values. I need something like a loop for this to work, so i can plot the length of these two vectors over time.
fyi: The vectors are the force projected on the ground while running.
In the end I need an array of the length of both vectors.
This is what i got so far:
j = 1:10:length(Data.Time)
x0_l=Data.XPC_FP1COP(j,1);
y0_l=zeros(length(Data.Time),1);
z0_l=Data.XPC_FP1COP(j,2);
x0_r=Data.XPC_FP2COP(j,1);
y0_r=zeros(length(Data.Time),1);
z0_r=Data.XPC_FP2COP(j,2);
x_l=Data.XPC_FP1GRF(j,1);
y_l=Data.XPC_FP1GRF(j,1);
z_l=Data.XPC_FP1GRF(j,1);
x_r=Data.XPC_FP2GRF(j,1);
y_r=Data.XPC_FP2GRF(j,1);
z_r=Data.XPC_FP2GRF(j,1);
Ground_l = [x0_l,y0_l,z0_l];
Ground_r = [x0_r,y0_r,z0_r];
Top_l = [x_l,y_l,z_l];
Top_r = [x_l,y_l,z_l];
F_l = Ground_l - Top_l
F_r = Ground_r - Top_r
  3 个评论
Anton
Anton 2019-6-12
编辑:Anton 2019-6-12
Okay, I'll try to rephrase.
I have got data of a starting point and an ending point of a vector. Of both these points I have a matrix of 3160x3, being measurements for x, y and z. each row being a certain time that the point was measured. What I want the code to do is to eventually plot the length of this line between the two points against time. How do I get this to work?
Is this clearer?
I rewrote the code that I have below. I also changed the y0, so that it corrosponds with the lengths of x0 and z0.
j = 1:10:length(Data.Time)
x0 = Data.XPC_FP1COP(j,1);
y0 = zeros(length(j),1);
z0 = Data.XPC_FP1COP(j,2);
x = Data.XPC_FP1GRF(j,1);
y = Data.XPC_FP1GRF(j,2);
z = Data.XPC_FP1GRF(j,3);
Start = [x0,y0,z0];
End = [x,y,z];
F = End - Start
Guillaume
Guillaume 2019-6-12
编辑:Guillaume 2019-6-12
My understanding is that you have two points moving through a 3D space. And it sounds like the distance between these two points vary in time.
No idea what the length of the line refers to? What line? Do you mean that you want to plot the distance between the two points with time?
And by distance, do you mean euclidean distance (i.e )?

请先登录,再进行评论。

采纳的回答

Matt J
Matt J 2019-6-12
编辑:Matt J 2019-6-12
I think this would complete your code.
Times=1:10:length(Data.Time);
J=numel(Times);
F=nan(J,3);
for j = 1:J
x0 = Data.XPC_FP1COP(j,1);
y0 = zeros(length(j),1);
z0 = Data.XPC_FP1COP(j,2);
x = Data.XPC_FP1GRF(j,1);
y = Data.XPC_FP1GRF(j,2);
z = Data.XPC_FP1GRF(j,3);
Start = [x0,y0,z0];
End = [x,y,z];
F(j,:) = End - Start;
end
plot(vecnorm(F,2,2))
  1 个评论
Guillaume
Guillaume 2019-6-12
Is there any point to the loops? I would assume that:
rows = 1:10:numel(Data.Time); %and if Data is a table use height(Data)
F = Data.XPC_FP1GRF(rows, 1:3) - [Data.XPC_FP1COP(rows, 1), zeros(numel(rows), 1), Data.XPC_FP1COP(rows, 3)];
plot(vecnorm(F, 2, 2));
would achieve the same result.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by