How to state the compass direction between two coordinates
Show older comments
What code can state the direction between two coordinates?
For example,
Input a,b;c,d (a,b to c,d)
a,b (x,y coordinates from place 1) to b,c (x,y coordinates to place 2)
Output: N,NE,E,SE,S,SW,W,NW or here (if it's the same place)?
Number examples:
Input: 1,1;1,2
Output = N
Input: 1,1:2,1
Output = E
Input 1,1:2,2
Output = NE
Input: 1,1:0,0
Output = SW
Input 13,13;13,13
Output = 'Here'
Accepted Answer
More Answers (0)
Categories
Find more on Coordinate Systems 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!