How can I make a random deployed point move to new position and return to the same position ?

1 次查看(过去 30 天)
if I have random point this point move in the following way
OldPosition = let say (0,0)
v=8mps
AngleOption = [-14.3239 -7.1620 7.1620 14.3239];
for Angle1 = 1:numel(AngleOption)
pickangle11 = AngleOption(Angle1);
ZZ= Do some calculations
Displacement = [cos(pickangle11(:)) .* v1 ,sin(pickangle11(:)) .* v1];
NewPosition = OldPosition + Displacement
end
How can Move the point x from the original position (OldPosition) to the New Position 1 and let it return to the original Position (OldPosition)
and so on up to experience all 4 angles ?
In other word make it move in direction 1 and back the original position, then move in direction 2 and back the original position , then move in direction 3 and back the original position , and finally move in direction 4 and back to the original position, to let choose the best direction , this is the purpose
Thanks in advance for any help

回答(0 个)

类别

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

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by