Bit Shift Calculator
Shift bits of an integer left or right
This function shifts the bits of an integer to the right or left. The number can be entered in the formats hexadecimal, decimal, octal or binary.
The direction of the shift and the number of bits are specified in the second input line.
The result is displayed in the formats hexadecimal, decimal, octal and binary.
|
Bitwise shift
With bit-by-bit shifting, the binary characters are shifted to the left or right by a specified number of bit positions. The direction is always given in the, regardless of the computer architecture Understand the standard convention of the dual system: left means multiplication and right means division by a power of two. Processor registers contain a defined, finite number of bits, which is why the specified number of bits at one end is "pushed out" of the register, while the same number is "pushed in" ("pulled in") at the other end.
Logical shift
In the case of the logical shift used here, the shifted bits are discarded and zeros are added, regardless of the sliding direction. In contrast to arithmetic shifts, no signed numbers can be used.
IT Functions
Decimal, Hex, Bin, Octal conversion • Shift bits left or right • Set a bit • Clear a bit • Bitwise AND • Bitwise OR • Bitwise exclusive ORSpecial functions
Airy • Derivative Airy • Bessel-I • Bessel-Ie • Bessel-J • Bessel-Je • Bessel-K • Bessel-Ke • Bessel-Y • Bessel-Ye • Spherical-Bessel-J • Spherical-Bessel-Y • Hankel • Beta • Incomplete Beta • Incomplete Inverse Beta • Binomial Coefficient • Binomial Coefficient Logarithm • Erf • Erfc • Erfi • Erfci • Fibonacci • Fibonacci Tabelle • Gamma • Inverse Gamma • Log Gamma • Digamma • Trigamma • Logit • Sigmoid • Derivative Sigmoid • Softsign • Derivative Softsign • Softmax • Struve • Struve table • Modified Struve • Modified Struve table • Riemann ZetaHyperbolic functions
ACosh • ACoth • ACsch • ASech • ASinh • ATanh • Cosh • Coth • Csch • Sech • Sinh • TanhTrigonometrische Funktionen
ACos • ACot • ACsc • ASec • ASin • ATan • Cos • Cot • Csc • Sec • Sin • Sinc • Tan • Degree to Radian • Radian to Degree
|