vote up 1 vote down star

Hi

Confused as to what this code does

for (L=0; L < levels; L++, N_half>>=1){
    func( y, N_half);
} // end: levels for loop

In particular this " N_half>>=1 "

Thanks

flag
How is this related to bits and bit-shifting? – Jørn Schou-Rode Jul 2 at 11:54
1  
Because that's the behavior of the operator OP is asking about. – chaos Jul 2 at 11:56

6 Answers

vote up 9 vote down

It advances the loop by dividing N_half by two at every iteration. It is equivalent to:

for (L=0; L<levels; ++L, N_half=N_half / 2) {
    ...
}
link|flag
Thanks, much appreciated – mik Jul 2 at 11:55
vote up 5 vote down

N_half>>=1 performs a 1-place bitwise shift-right on N_half, which (for non-negative numbers) divides it by 2.

>>= is to >> as += is to +.

link|flag
vote up 0 vote down

If N_half is a positive or unsigned integer, it halves it.

link|flag
Actually, it also works if N_half is negative. – RaphaelSP Jul 2 at 18:40
RaphaelSP - there is no standard that indicates that twos complement notation must be used. It's only guaranteed to work for unsigned and positive numbers, AFAIK. – Barry Kelly Jul 3 at 4:22
vote up 0 vote down

It right shifts N_half by 1 (i.e. divides it by two) and stores the result back in N_half

link|flag
vote up 0 vote down

This seems to be the same as

for (L=0; L < levels; L++)
{
  func(y, N_Half); 
  N_Half /= 2;
}

The question has been rephrased since I answered it, such that this is no longer valid, but added for completeness: If nothing else is done within the loop, it is equivalent to:

N_Half >>= levels;

Caveats:

  • if N_Half < 2^levels (0 for several iterations)
  • if N_Half < 0 (first rightshift will depending on the implementation make it a positive number)
link|flag
You need to look at the original code again - it did not call 'floor', and the function it called took y as an extra argument. – Jonathan Leffler Jul 2 at 13:11
Also, the behaviour of right-shift on negative (hence, necessarily, signed) values is not guaranteed to convert the value to positive. The C standard explicitly leaves it up to the implementation and the shift can copy the sign bit or insert zeroes; both are correct (though a given compiler may only use one or the other technique). – Jonathan Leffler Jul 2 at 13:13
And 'floor()' is a floating point function... – Jonathan Leffler Jul 2 at 13:14
vote up 1 vote down

>>= operator shifts number's digits k positions at right

examples:

binary form

N = 101010111 // 2-base  arithmetic system
N >>= 1; // `division` by 2
N: 010101011

decimal form

N = 123456 // 10-base  arithmetic system
N >>= 2; // `division` by 10^2
N: 001234

as usual, the numbers in memory are in binary form and >>=1 is equivalent to division by 2.

link|flag
??? How is ">>= 2" division by 100? Your example with decimal representation makes no sense to me. Please clarify? – abelenky Jul 2 at 12:27
It's the shift operation in the decimal form. Not binary. You cannot apply it with the standard >>= unless you have a Class for decimal numbers. Ex. 345 >> 1 is 345/10, 345 >> 2 is (345/10)/10. – Nick D Jul 2 at 12:46
Ah: an overloaded operator. I've never encountered that type of overloading for >>. Thx. – abelenky Jul 2 at 13:37

Your Answer

Get an OpenID
or

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