Average of multiple vectors

85.4k Views Asked by At

I have more than two vectors (these are 2D vectors) and I want to calculate the mean vector. What is the correct way to do it? All my vectors share their origins at (0,0).

1

There are 1 best solutions below

1
On BEST ANSWER

The mean of a set of vectors is calculated component-wise. In other words, for 2D vectors simply find the mean of the first coordinates and the mean of the second coordinates, and those will be the coordinates of the mean vector.