Clear Filters
Clear Filters

Find coordinates at the midpoint of a line.

33 views (last 30 days)
I can plot a line between points (so I know the x and y's of the endpoints). I also know this can give the distance between the points. I'm sure there is a oneline command to calculate the midpoint coordinates. Any help would be appreciated. Thankyou.

Accepted Answer

Walter Roberson
Walter Roberson on 27 Nov 2011
[(x1+x2)/2, (y1+y2)/2]

More Answers (1)

Ankit
Ankit on 19 Jan 2023
line=[x1 y1;x2 y2]
line=[0 0;10 50];
mid_pt=mean(line)
mid_pt = 1×2
5 25

Categories

Find more on Environment and Clutter 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!