quote:Yes, easy, turn them to decimal, then compute the average, and turn them back to hex =)
For instance: FF = F*16+F = 15*16+15 (F being 15 in hexadecimal notation).
Or: AE = A*16+E = 160+14 = 174
And so on...
To understand this, try the same with decimal numbers:
140, for instance, = 1*10^2 + 4*10^1 + 0*10^0 (^ meaning "exponent").
Or binary, 101 = 1*2^2 + 0 * 2^1 + 1 * 2^0 = decimal 5.