how can i make if condation for two number with direction ex ( 50 North) then if they are same direction subract them and if they opposite add them ?

1 次查看(过去 30 天)
x=50 E
z=3 W
  2 个评论

请先登录,再进行评论。

回答(1 个)

John D'Errico
John D'Errico 2021-12-23
编辑:John D'Errico 2021-12-23
Numbers no not have a character component. They are just numbers. But you can always call East a POSITIVE direction. West is therefore a NEGATIVE direction. So apply a sign to the numbers, depending on your "direction" flag. Then you can just add the results.
Effectively, I am telling you to NOT have separate character flag. Make the sign of the number indicate the direction. So here, we wuld have
x = 50;
z = -3;
Now the composite result is trivial.
xplusz = x + z
xplusz = 47
And the net result is positive, so it is an easterly direction.
  4 个评论

请先登录,再进行评论。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by