Magnitude of difference from one vector (number) to another

2 views (last 30 days)
Hi,
I have defined two vectors: X = -135.89 Y = -84.96066717
I want to determine how far away Y is compared to X (i.e. the return answer should be close to 50).
Can someone please help?
  1 Comment
KSSV
KSSV on 28 Apr 2017
Your X and Y are not vectors, they are scalars. You can get what you want using:
d = abs(abs(X)-abs(Y))

Sign in to comment.

Answers (0)

Categories

Find more on Financial Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!