If I have more than 2 points on a graph, how would I best find a point that might be the midpoint between all of them?
How to find the best collective midpoint between more than 2 points?
2
$\begingroup$
graphing-functions
-
0@Mitch: Thanks. I've just figured that out by the OP's reaction to Ross's answer :) – 2011-04-26
1 Answers
5
If you have a bunch of $n$ points, $(x_i,y_i)$, you can use $(\frac{1}{n}\sum x_i,\frac{1}{n}\sum y_i)$ Does that meet your needs?
-
0Oh of course! Thank You – 2011-04-26