vote up 8 vote down star
5

I want to calculate the average of a set of angles. For example, I might have several samples from the reading of a compass. The problem of course is how to deal with the wraparound. The same algorithm might be useful for a clockface.

The actual question is more complicated - what do statistics mean on a sphere or in an algebraic space which "wraps round", eg the additive group mod n. The answer may not be unique, eg the average of 359 degrees and 1 degree could be 0 degrees or 180, but statistically 0 looks better.

This is a real programming problem for me and I'm trying to make it not look like just a Math problem.

[Edit: to resolve all the confusion, when I refer to angles you can assume I mean bearings]

flag

By average angle, I assume your actually want mean bearing. An angle exists between two lines, a bearing is the direction of a single line. In this case, starblue has it right. – Shane MacLaughlin Jan 29 at 14:29
@Nick Fortescue: can you update your question to be more specific: do you mean angles or a bearing? – Mitch Wheat Jan 29 at 14:33
I actually wanted something slightly more complicated (but is analogous to bearings) and was trying to simplify to make the question easier, and as usual made it more complicated. I found the answer I wanted at catless.ncl.ac.uk/Risks/7.44.html#subj4. I'll re-edit the qn. – Nick Fortescue Jan 29 at 14:48
The Risks answer is basically what I'm proposing, except that it may run into trouble when the denominator is 0. – starblue Jan 29 at 14:54

9 Answers

vote up 19 vote down check

Compute unit vectors from the angles and take the angle of their average.

link|flag
That does not work if the vectors cancel each other out. Average could still be meaningful in this case, depending on its exact definition. – David Hanak Jan 29 at 14:27
@David, the average direction of two bearings 180 degrees out is undefined. This doesn't make starblue's answer wrong, it's just an exceptional case, as occurs in many geomteric problems. – Shane MacLaughlin Jan 29 at 14:31
I don't think there is a meaningful definition which takes into account circularity when the vectors cancel out. – starblue Jan 29 at 14:35
@smacl: I agree, if angles represent directions. But if you think of complex numbers, for example, and define average as "what is the argument of c, such that c*c == a*b", where a and b have a modulus of 1, then the average of 0 and 180 is 90. – David Hanak Jan 29 at 14:42
By the way this is also a great answer because it gives an obvious extension to weighted average if you trust some samples more than others. – Nick Fortescue Jan 29 at 15:05
show 2 more comments
vote up 1 vote down

FOR THE SPECIAL CASE OF TWO ANGLES:

The answer ( (a + b) mod 360 ) / 2 is WRONG. For angles 350 and 2, the closest point is 356, not 176.

The unit vector and trig solutions may be too expensive.

What I've got from a little tinkering is:

diff = ( ( a - b + 180 + 360 ) mod 360 ) - 180
angle = (360 + b + ( diff / 2 ) ) mod 360
  • 0, 180 -> 90 (two answers for this: this equation takes the clockwise answer from a)
  • 180, 0 -> 270 (see above)
  • 180, 1 -> 90.5
  • 1, 180 -> 90.5
  • 20, 350 -> 5
  • 350, 20 -> 5 (all following examples reverse properly too)
  • 10, 20 -> 15
  • 350, 2 -> 356
  • 359, 0 -> 359.5
  • 180, 180 -> 180
link|flag
This could further be optimized by the use of BAMS: stackoverflow.com/questions/1048945/… – dblack Jul 21 at 13:58
Not bad. The first line computes the relative angle of a with respect to b in the range [-180, 179], the second computes the middle angle from that. I'd use b + diff/2 instead of a - diff/2 for clarity. – starblue Jul 21 at 14:42
Try it with 20 and 210 and you should get 295 NOT 115 !!! – Stecy Jul 21 at 14:42
Am I missing something? I DO get 295. – dblack Jul 21 at 15:00
Ah.. I get it. Matlab's mod operator wraps -10 to 350. I'll change the code. It's a simple additional 360. – dblack Jul 21 at 15:02
vote up 0 vote down

The average angle phi_avg should have the property that sum_i|phi_avg-phi_i|^2 becomes minimal, where the difference has to be in [-Pi, Pi) (because it might be shorter to go the other way around!). This is easily achieved by normalizing all input values to [0, 2Pi), keeping a running average phi_run and choosing normalizing |phi_i-phi_run| to [-Pi,Pi) (by adding or subtractin 2Pi). Most suggestions above do something else that does not have that minimal property, i.e., they average something, but not angles.

link|flag
vote up 0 vote down

Alnitak has the right solution. Nick Fortescue's solution is functionally the same.

For the special case of where

( sum(x_component) = 0.0 && sum(y_component) = 0.0 ) // e.g. 2 angles of 10. and 190. degrees ea.

use 0.0 degrees as the sum

Computationally you have to test for this case since atan2(0. , 0.) is undefined and will generate an error.

link|flag
on glibc 'atan2' is defined for (0, 0) - the result is 0 – Alnitak Jan 31 at 10:40
vote up 7 vote down

This question is examined in detail in the book: "Statistics On Spheres", Geoffrey S. Watson, University of Arkansas Lecture Notes in the Mathematical Sciences, 1983 John Wiley & Sons, Inc. as mentioned at http://catless.ncl.ac.uk/Risks/7.44.html#subj4 by Bruce Karsh.

A good way to estimate an average angle, A, from a set of angle measurements a[i] 0<=i

                   sum_i_from_1_to_N sin(a[i])
a = arctangent ---------------------------
                   sum_i_from_1_to_N cos(a[i])

The method given by starblue is computationally equivalent, but his reasons are clearer and probably programmatically more efficient, and also work well in the zero case, so kudos to him.

link|flag
which is also much the same as the algorithm I posted at the same time as you. You would need to use atan2 rather than a plain atan, though, since otherwise you can't tell which quadrant the answer is in. – Alnitak Jan 29 at 15:06
You can still end up with some indeterminate answers. Like in the 0, 180 sample. So you still have to check for edge cases. Also, there is usually an atan2 function available which might be faster in your case. – Loki Jan 29 at 15:24
vote up 1 vote down

Let's represent these angles with points on the circumference of the circle.

Can we assume that all these points fall on the same half of the circle? (Otherwise, there is no obvious way to define the "average angle". Think of two points on the diameter, e.g. 0 deg and 180 deg --- is the average 90 deg or 270 deg? What happens when we have 3 or more evenly spread out points?)

With this assumption, we pick an arbitrary point on that semicircle as the "origin", and measure the given set of angles with respect to this origin (call this the "relative angle"). Note that the relative angle has an absolute value strictly less than 180 deg. Finally, take the mean of these relative angles to get the desired average angle (relative to our origin of course).

link|flag
vote up 1 vote down

Here's an idea: build the average iteratively by always calculating the average of the angles that are closest together, keeping a weight.

Another idea: find the largest gap between the given angles. Find the point that bisects it, and then pick the opposite point on the circle as the reference zero to calculate the average from.

link|flag
I don't recommend my answer, but instead starblue's highly ranked answer. The key observation there is to think of the center of the compass as the 0,0 point. – John the Statistician Feb 19 at 12:57
vote up 5 vote down

I see the problem - for example, if you have a 45' angle and a 315' angle, the "natural" average would be 180', but the value you want is actually 0'.

I think Starblue is onto something. Just calculate the (x, y) cartesian coordinates for each angle, and add those resulting vectors together. The angular offset of the final vector should be your required result.

x = y = 0
foreach angle {
    x += cos(angle)
    y += sin(angle)
}
average_angle = atan2(y, x)

I'm ignoring for now that a compass heading starts at north, and goes clockwise, whereas "normal" cartesian coordinates start with zero along the X axis, and then go anti-clockwise. The maths should work out the same way regardless.

link|flag
Your maths library probably uses Radians for angles. Remember to convert. – mgb Nov 27 at 23:51
vote up 3 vote down

You have to define average more accurately. For the specific case of two angles, I can think of two different scenarios:

  1. The "true" average, i.e. (a + b) / 2 % 360.
  2. The angle that points "between" the two others while staying in the same semicircle, e.g. for 355 and 5, this would be 0, not 180. To do this, you need to check if the difference between the two angles is larger than 180 or not. If so, increment the smaller angle by 360 before using the above formula.

I don't see how the second alternative can be generalized for the case of more than two angles, though.

link|flag
While the question refers to angles, it is better thought of as mean direction, and is a common navigation issue. – Shane MacLaughlin Jan 29 at 14:33
Good points, David. For instance, what is the average of a 180º angle and a 540º angle? Is it 360º or 180º? – Baltimark Jan 29 at 14:35
@Baltimark, I guess it depends on what you are doing. If its navigation, probably the latter. If it's a fancy snowboarding jump, maybe the former ;) – Shane MacLaughlin Jan 29 at 14:39
So the "true" average of 1 and 359 is (360 / 2) % 360 = 180?? I think not. – Die in Sente Feb 1 at 18:00
@Die in Sente: numerically speaking, definitely. For example, if angles represent turns, not directions, then the average of 359 and 1 is surely 180. It's all a matter of interpretation. – David Hanak Feb 1 at 18:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.