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
|
|
|||||||
|
|
|
It advances the loop by dividing N_half by two at every iteration. It is equivalent to:
|
||
|
|
|
|
||
|
|
|
|
If N_half is a positive or unsigned integer, it halves it. |
||||
|
|
|
It right shifts N_half by 1 (i.e. divides it by two) and stores the result back in N_half |
||
|
|
|
|
This seems to be the same as
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:
Caveats:
|
||||||
|
|
|
>>= operator shifts number's digits k positions at right examples: binary form
decimal form
as usual, the numbers in memory are in binary form and >>=1 is equivalent to division by 2. |
||||||
|