rotate$71140$ - translation to german
Diclib.com
ChatGPT AI Dictionary
Enter a word or phrase in any language 👆
Language:

Translation and analysis of words by ChatGPT artificial intelligence

On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:

  • how the word is used
  • frequency of use
  • it is used more often in oral or written speech
  • word translation options
  • usage examples (several phrases with translation)
  • etymology

rotate$71140$ - translation to german

SHIFT WHOSE LAST ENTRY MOVED TO FIRST PLACE (OR VICE VERSA)
Cyclic shift; Circular Shift; Cyclic Shift; ROtate Right; ROtate Left; Cyclic rotation; Bitwise rotate

rotate      
v. rotieren; drehen; abwechseln
crop rotation         
PRACTICE OF GROWING A SERIES OF DISSIMILAR OR DIFFERENT TYPES OF CROPS IN THE SAME AREA IN SEQUENCED SEASONS
Rotation of crops; Fallowing; Four field system; Four-field system; Four-field crop rotation; Four Field Crop Rotation; Three-Field System; Crop Rotation; Break crop; Fallow-ground; Crop sequencing; Fallowing for water conservation; Rotation crop; Fallowing of land; Crops, course of; Crop variation; Fallow farmland; Fallow ratio; Idle farmland; Crop sequence; Two-field system; Rotate crops; Crop cycle
Fruchtfolge, Pflanzungreihenfolge bei der auf demselben Stück land nacheinander unterschiedliche Früchte gepflanzt werden um den Boden zu schonen

Definition

rot13
/rot ther'teen/ [Usenet: from "rotate alphabet 13 places"], v. The simple Caesar-cypher encryption that replaces each English letter with the one 13 places forward or back along the alphabet, so that "The butler did it!" becomes "Gur ohgyre qvq vg!" Most Usenet news reading and posting programs include a rot13 feature. It is used to enclose the text in a sealed wrapper that the reader must choose to open - e.g. for posting things that might offend some readers, or spoilers. A major advantage of rot13 over rot(N) for other N is that it is self-inverse, so the same code can be used for encoding and decoding. [Jargon File]

Wikipedia

Circular shift

In combinatorial mathematics, a circular shift is the operation of rearranging the entries in a tuple, either by moving the final entry to the first position, while shifting all other entries to the next position, or by performing the inverse operation. A circular shift is a special kind of cyclic permutation, which in turn is a special kind of permutation. Formally, a circular shift is a permutation σ of the n entries in the tuple such that either

σ ( i ) ( i + 1 ) {\displaystyle \sigma (i)\equiv (i+1)} modulo n, for all entries i = 1, ..., n

or

σ ( i ) ( i 1 ) {\displaystyle \sigma (i)\equiv (i-1)} modulo n, for all entries i = 1, ..., n.

The result of repeatedly applying circular shifts to a given tuple are also called the circular shifts of the tuple.

For example, repeatedly applying circular shifts to the four-tuple (a, b, c, d) successively gives

  • (d, a, b, c),
  • (c, d, a, b),
  • (b, c, d, a),
  • (a, b, c, d) (the original four-tuple),

and then the sequence repeats; this four-tuple therefore has four distinct circular shifts. However, not all n-tuples have n distinct circular shifts. For instance, the 4-tuple (a, b, a, b) only has 2 distinct circular shifts. The number of distinct circular shifts of an n-tuple is n k {\displaystyle {\frac {n}{k}}} , where k is a divisor of n, indicating the maximal number of repeats over all subpatterns.

In computer programming, a bitwise rotation, also known as a circular shift, is a bitwise operation that shifts all bits of its operand. Unlike an arithmetic shift, a circular shift does not preserve a number's sign bit or distinguish a floating-point number's exponent from its significand. Unlike a logical shift, the vacant bit positions are not filled in with zeros but are filled in with the bits that are shifted out of the sequence.