Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Arithmetic shift
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Applications == In applications where consistent rounding down is desired, arithmetic right shifts for signed values are useful. An example is in [[downscaling]] raster coordinates by a power of two, which maintains even spacing. For example, right shift by 1 sends 0, 1, 2, 3, 4, 5, ... to 0, 0, 1, 1, 2, 2, ..., and β1, β2, β3, β4, ... to β1, β1, β2, β2, ..., maintaining even spacing as β2, β2, β1, β1, 0, 0, 1, 1, 2, 2, ... In contrast, integer division with rounding towards zero sends β1, 0, and 1 all to 0 (3 points instead of 2), yielding β2, β1, β1, 0, 0, 0, 1, 1, 2, 2, ... instead, which is irregular at 0.
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)