jueves, 9 de mayo de 2013

Code Block

This week we are assigned to make a way to check if a string or text or text string is transmitted correctly.

The idea is to use HAMMING BLOCK CODES.

The hamming code allows us to find errors in a text received by a string of 4 bits (7x4). This indicates that it will be a string of four bits that represent something as numbers or letters and is accompanied with 3 digits its parity bits.



Hamming algorithm (7X4) can correct any single bit error, but when there are errors in more than one bit, the transmitted word is confused with another with a single bit error being corrected, but incorrectly, ie that the word is not correct other than the original, and the final message is wrong without knowing it. 

The key to the Hamming Code is the use of extra parity bits to allow the identification of a single error. Create the code word as follows:
  1. Mark all bit positions that are powers of two as parity bits. (positions 1, 2, 4, 8, 16, 32, 64, etc.)
  2. All other bit positions are for the data to be encoded. (positions 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, etc.)
  3. Each parity bit calculates the parity for some of the bits in the code word. The position of the parity bit determines the sequence of bits that it alternately checks and skips.
    Position 1: check 1 bit, skip 1 bit, check 1 bit, skip 1 bit, etc. (1,3,5,7,9,11,13,15,...)
    Position 2: check 2 bits, skip 2 bits, check 2 bits, skip 2 bits, etc. (2,3,6,7,10,11,14,15,...)
    Position 4: check 4 bits, skip 4 bits, check 4 bits, skip 4 bits, etc. (4,5,6,7,12,13,14,15,20,21,22,23,...)
    Position 8: check 8 bits, skip 8 bits, check 8 bits, skip 8 bits, etc. (8-15,24-31,40-47,...)
    Position 16: check 16 bits, skip 16 bits, check 16 bits, skip 16 bits, etc. (16-31,48-63,80-95,...)
    Position 32: check 32 bits, skip 32 bits, check 32 bits, skip 32 bits, etc. (32-63,96-127,160-191,...)
    etc.
  4. Set a parity bit to 1 if the total number of ones in the positions it checks is odd. Set a parity bit to 0 if the total number of ones in the positions it checks is even.


Bibliografía
http://users.cs.fiu.edu/~downeyt/cop3402/hamming.html


 

1 comentario:

  1. Las tareas nunca son "copia y pega pedazos de sitios web relacionados" y tú ya deberías saber eso muy bien. 0+1.

    ResponderEliminar