This documentation is out of date.

The new version of the documentation is here: https://cannylogic.com/docs

Difference between revisions of "Right rotation"

From CANNY Wiki
Jump to: navigation, search
[unchecked revision][unchecked revision]
Line 41: Line 41:
  
 
<div>
 
<div>
Logical shift to the right. Set the output result as the logical right shift in binary representation of the input "Value", the number of bits to shift specified by the input "Shift, bit", while leaving bit appears in place of free pop spot on the other end of the number..
+
Circular shift to the right. Set the output result as the logical right shift in binary representation of the input "Value", the number of bits to shift specified by the input "Shift, bits", while leaving bit appears in place of free pop spot on the other end of the number.
 
</div>
 
</div>
 
</div>
 
</div>
 
<br clear="left">
 
<br clear="left">
In other words, the result is equivalent to the result of copying each bit in binary representation of input "value" to its right position, to the number of times specified by the value of the input "Shift, bit". Thus, the most significant (left-most) bit in the binary representation each time will have a value equal to the outgoing (least significant, extending to the right) bit of input value.
+
In other words, the result is equivalent to the result of copying each bit in binary representation of input "value" to its right position, to the number of times specified by the value of the input "Shift, bits". Thus, the most significant (left-most) bit in the binary representation each time will have a value equal to the outgoing (least significant, extending to the right) bit of input value.
  
 
For example:
 
For example:

Revision as of 21:35, 19 November 2015

Appearance
Изображение:5_4_5_2.png
Symbol
RSR
Group
Bitwise operators
Inputs
Value: Integer
Shift, bits: Integer
outputs
Result: Integer
Version CANNY Lab
from 1.8b

left|Иконка

Circular shift to the right. Set the output result as the logical right shift in binary representation of the input "Value", the number of bits to shift specified by the input "Shift, bits", while leaving bit appears in place of free pop spot on the other end of the number.


In other words, the result is equivalent to the result of copying each bit in binary representation of input "value" to its right position, to the number of times specified by the value of the input "Shift, bits". Thus, the most significant (left-most) bit in the binary representation each time will have a value equal to the outgoing (least significant, extending to the right) bit of input value.

For example:

Value = 51000 = 0xC738 = 0b1100011100111000
Shift, bits = 2
Result = 12750 = 0x31CE = 0b0011000111001110

Features

Cyclic shift of 16-bit value in either direction for 8-bit, reverses its upper and lower bytes.

Examples

thumb|400px|Десятичное представление thumb|500px|Двоичное представление

See also

Bitwise AND

Bitwise OR

Bitwise exclusive OR

Bitwise Inversion

Right shift

Left shift

Left rotation

Built-in Function Blocks