SlideShare a Scribd company logo
1 of 30
Error Control CODING

Prepared by :
Ola Mashaqi
Suhad Malayshe
Mais Masri

Submitted to : Dr. Allam Mousa
Topics to be discussed :
What is channel coding
Where it is used
How to detect and correct error
Hamming distance
Linear block coding
Syndrome coding
Defintion of channel coding
Error control coding ,detect, and often correct, symbols which are
received in error
The channel encoder separates or segments the incoming bit stream into
equal length blocks of L binary digits and maps each L-bit message
block into an N-bit code word where N > L
There are M=2L messages and 2L code words of length N bits

The channel decoder has the task of detecting that there has been a bit error and (if •
possible) correcting the bit error
ARQ (Automatic-Repeat-Request ) If the channel decoder performs error
detection then errors can be detected and a feedback channel from the channel
decoder to the channel encoder can be used to control the retransmission of the
. code word until the code word is received without detectable errors
There are two major ARQ techniques stop and wait continuous ARQ

FEC (Forward Error Correction) If the channel decoder performs error correction then
errors are not only detected but the bits in error can be identified and corrected (by bit
)inversion
There are two major ARQ techniques
•

stop and wait, in which each block of data is positively, or
negatively, acknowledged by the receiving terminal as being error
free before the next data block is transmitted,

•

continuous ARQ, in which blocks of data continue to be transmitted
without waiting for each previous block to be acknowledged
Where it used ?
• Error control coding, generally, is applied
widely in control and communications
systems for aerospace applications, in
mobile (GSM) cellular telephony and for
enhancing security in banking and
barcode readers.
Error Control Coding (Channel
Coding)
particular error control methods : linear group codes,
cyclic codes, the Golay code, BCH codes, Reed–
Solomon codes and Hamming codes
Block coding VS. convolutional coding
Block coding
The (n,k) block code is the
code that convert k bit of the
massage signal to n bit
codeword .

It block because it
take number of bits from
massage(information digit)
and add redundant bits
(parity digit) to it and do so
to the rest of the bits.

Convolutional Coding
encoding a stream of data
rather than blocks of data .

The sequence of bits in a
convolutional code depends
Not only on the current bits of
data
but also on previous bits of
data.
Error rate control concept
How to measure error performance ?
Answer is BER : the average rate at which errors occur and is
given by the product PbRb
Pb: probability of error
Rb : bit transmission rate in the channel
BUT
If BER is too large ! What to do to make it smaller ..
• increase transmitter power(not efficient )
• Diversity : Frequency diversiy employs two different frequencies to
transmit the same information , time diversity systems the same
message is transmitted more than once at different times .
• introduce full duplex transmission: implying simultaneous two-way
transmission
• ARQ and FEC
Hamming Distance
The Hamming distance between two code-words is defined as the number of places,
.bits or digits in which they differ

•The distance is important factor since it indicates how easy to change one valid code
into another.
•The weight of the codeword is defined as the number of ones in the codeword.
: Example) Calculate the hamming distance and weight of the following codeword •
11100, 11011
Hamming distance = 3 bit
The code word 11100 could changed to 11011
The weight of the codeword 1= 3
The weight of the codeword 2= 4
The minimum codeword weight =3
(n, k) block codes:

with
k information digits
going into the coder.
n digits coming out
after
(n −k) redundant
parity check digits.

The rate, or efficiency, for this
code
(R) = k/n
Rate is normally in the range 1/2 to
unity.
Linear group codes
Group codes contain the all-zeros codeword and have the
property referred to as closure .

Advantage : it makes performance calculations with linear group
codes particularly easy.

taking any two codewords Ci and Cj , then Ci ⊕ Cj = Ck .
Example
a contain all-zeros codeword
b ⊕ c=d

, c ⊕ d=b , b ⊕ d=b .
Performance prediction
Hamming distances measurer to determine the overall performance of a
block code
consideration of each of the codewords with the all-zeros
codewordis sufficient.
Example
00000
00111
11100
11011
Dmin = 3 for this (5,2) code.
Consider four codewords the weights of these are 0, 3, 3 and 4.
the minimum weight in the weight structure (3) is equal to Dmin,
the minimum Hamming distance for the code.
Error detection and correction capability

t :The maximum possible error correcting.
Dmin :minimum Hamming distance
e : is the ability of certain code to detect errors.

t ≤ e.
Error detection and correction capability
Dmin is 3

e=1 , t=1

11001 &11000
If any single error occurs in one of the codewords it can
therefore be corrected. Dmin − 1 errors can be detected
there is no error correction

Longer codes with larger Hamming distances
offer greater detection and correction capability
by selecting different t and e
Standerd

The UK Post Office Code Standards Advisory Group(POCSAG) code
k = 21 and n = 32
R ≈ 2/3
Dmin = 6.
3 bit detection 2 bit correction capability.
Syndrome decoding
Error location

0000000
1000000
0100000
0010000
0001000
0000100
0000010
0000001

Syndrome

000
111
011
101
110
100
010
001

syndrome is independent
of the transmitted
codeword and only
depends on
the error sequence
A decoding table tells a
decoder how to correct
errors that might have
corrupted the code during
transmission
Syndrome decoding
d is a message vector of k digits
G is the k × n generator matrix
c is the n-digit codeword corresponding to the message d,

dG=c
Where G is the generation matrix
Furthermore:

Hc=0
where H is the (even) parity check matrix corresponding to G
Syndrome decoding
r=c⊕e
r is the sequence received after transmitting c .
e is an error vector representing the location of the errors
which occur in the received sequence r.
syndrome vector s

s = H r = H (c ⊕ e) =
H c ⊕ H e = 0 ⊕ H e =He

s is easily calculated
The generator matrix(G) : The generator matrix G for
an (n, k) block code can be used to generate the appropriate
n-digit codeword from any given k-digit data sequence .

Parity check matrix (H) : does not contain any codewords.

(7,4) block block code H matrix .
The right side of G is the transpose of the left hand
portion of H.
Parity check section must : must contain at
least two ones. rows cannot be identical.
G is the k × n generator matrix . The right side of G is the
transpose of the left hand portion of H. .
use this syntax to Produce syndrome decoding table
t = syndtable(h)
returns a decoding table for an error-correcting binary
code having codeword length n and message length
http://www.mathworks.com/help/comm/ref/syndtable.html
% Use a [7,4] Hamming code.
m = 3; n = 2^m-1; k = n-m;
parmat = hammgen(m); % Produce parity-check matrix.
trt = syndtable(parmat); % Produce decoding table.
recd = [1 0 0 1 1 1 1] % Suppose this is the received vector.
syndrome = rem(recd * parmat',2);
syndrome_de = bi2de(syndrome,'left-msb'); % Convert to decimal.
disp(['Syndrome = ',num2str(syndrome_de),...
' (decimal), ',num2str(syndrome),' (binary)'])
corrvect = trt(1+syndrome_de,:) % Correction vector
% Now compute the corrected codeword.
correctedcode = rem(corrvect+recd,2)
Matlab
n = 6; k = 4; % Set codeword length and message
length
% for a [6,4] code.
msg = [1 0 0 1 1 0 1 0 1 0 1 1]'; % Message is a
binary column.
code = encode(msg,n,k,'cyclic'); % Code will binary
column.
msg'
code'
msg consists of 12 entries, which are interpreted as three 4-digit
(because k = 4) messages. The resulting vector codecomprises three 6digit (because n = 6) codewords, which are concatenated to form a
vector of length 18. The parity bits are at the beginning of each
codeword
Matlab :hamming code
Create a Hamming Code in Binary Format Using Simulink
Matlab :hamming code
Reduce the Error Rate Using a Hamming Code
error control coding

More Related Content

What's hot (20)

Chapter 03 cyclic codes
Chapter 03   cyclic codesChapter 03   cyclic codes
Chapter 03 cyclic codes
 
Channel Coding (Error Control Coding)
Channel Coding (Error Control Coding)Channel Coding (Error Control Coding)
Channel Coding (Error Control Coding)
 
Turbo codes.ppt
Turbo codes.pptTurbo codes.ppt
Turbo codes.ppt
 
Error control coding bch, reed-solomon etc..
Error control coding   bch, reed-solomon etc..Error control coding   bch, reed-solomon etc..
Error control coding bch, reed-solomon etc..
 
Convolution codes - Coding/Decoding Tree codes and Trellis codes for multiple...
Convolution codes - Coding/Decoding Tree codes and Trellis codes for multiple...Convolution codes - Coding/Decoding Tree codes and Trellis codes for multiple...
Convolution codes - Coding/Decoding Tree codes and Trellis codes for multiple...
 
LDPC Encoding
LDPC EncodingLDPC Encoding
LDPC Encoding
 
Channel Coding (Digital communication)
Channel Coding (Digital communication)Channel Coding (Digital communication)
Channel Coding (Digital communication)
 
Linear Block Codes
Linear Block CodesLinear Block Codes
Linear Block Codes
 
5 linear block codes
5 linear block codes5 linear block codes
5 linear block codes
 
Ee424 fading
Ee424 fadingEe424 fading
Ee424 fading
 
Convolutional Error Control Coding
Convolutional Error Control CodingConvolutional Error Control Coding
Convolutional Error Control Coding
 
Convolutional codes
Convolutional codesConvolutional codes
Convolutional codes
 
Coding
CodingCoding
Coding
 
7 convolutional codes
7 convolutional codes7 convolutional codes
7 convolutional codes
 
Huffman Coding
Huffman CodingHuffman Coding
Huffman Coding
 
BCH CODE AND DECODING BCH
BCH CODE AND DECODING BCHBCH CODE AND DECODING BCH
BCH CODE AND DECODING BCH
 
Convolution codes and turbo codes
Convolution codes and turbo codesConvolution codes and turbo codes
Convolution codes and turbo codes
 
Bch codes
Bch codesBch codes
Bch codes
 
Turbo Codes
Turbo CodesTurbo Codes
Turbo Codes
 
LDPC Codes
LDPC CodesLDPC Codes
LDPC Codes
 

Similar to error control coding

Channel Coding .pptx
Channel Coding .pptxChannel Coding .pptx
Channel Coding .pptxMortadha96
 
M.TECH, ECE 2nd SEM LAB RECORD
M.TECH, ECE 2nd SEM LAB RECORD M.TECH, ECE 2nd SEM LAB RECORD
M.TECH, ECE 2nd SEM LAB RECORD Arif Ahmed
 
13-DataLink_02.ppt
13-DataLink_02.ppt13-DataLink_02.ppt
13-DataLink_02.pptWinterSnow16
 
02 ldpc bit flipping_decoding_dark knight
02 ldpc bit flipping_decoding_dark knight02 ldpc bit flipping_decoding_dark knight
02 ldpc bit flipping_decoding_dark knightDevanshi Piprottar
 
Implementation of reed solomon codes basics
Implementation of reed solomon codes basicsImplementation of reed solomon codes basics
Implementation of reed solomon codes basicsRam Singh Yadav
 
Reed Solomon Coding For Error Detection and Correction
Reed Solomon Coding For Error Detection and CorrectionReed Solomon Coding For Error Detection and Correction
Reed Solomon Coding For Error Detection and Correctioninventionjournals
 
Hossein Taghavi : Codes on Graphs
Hossein Taghavi : Codes on GraphsHossein Taghavi : Codes on Graphs
Hossein Taghavi : Codes on Graphsknowdiff
 
Encoder for (7,3) cyclic code using matlab
Encoder for (7,3) cyclic code using matlabEncoder for (7,3) cyclic code using matlab
Encoder for (7,3) cyclic code using matlabSneheshDutta
 
Reed_Solomon_Implementation
Reed_Solomon_ImplementationReed_Solomon_Implementation
Reed_Solomon_Implementationramya c b
 
Paper id 312201514
Paper id 312201514Paper id 312201514
Paper id 312201514IJRAT
 
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...IJERA Editor
 

Similar to error control coding (20)

Channel Coding .pptx
Channel Coding .pptxChannel Coding .pptx
Channel Coding .pptx
 
C04922125
C04922125C04922125
C04922125
 
Unit-4.pptx
Unit-4.pptxUnit-4.pptx
Unit-4.pptx
 
M.TECH, ECE 2nd SEM LAB RECORD
M.TECH, ECE 2nd SEM LAB RECORD M.TECH, ECE 2nd SEM LAB RECORD
M.TECH, ECE 2nd SEM LAB RECORD
 
13-DataLink_02.ppt
13-DataLink_02.ppt13-DataLink_02.ppt
13-DataLink_02.ppt
 
Data links
Data links Data links
Data links
 
02 ldpc bit flipping_decoding_dark knight
02 ldpc bit flipping_decoding_dark knight02 ldpc bit flipping_decoding_dark knight
02 ldpc bit flipping_decoding_dark knight
 
Channel Coding.ppt
Channel Coding.pptChannel Coding.ppt
Channel Coding.ppt
 
linear codes and cyclic codes
linear codes and cyclic codeslinear codes and cyclic codes
linear codes and cyclic codes
 
Implementation of reed solomon codes basics
Implementation of reed solomon codes basicsImplementation of reed solomon codes basics
Implementation of reed solomon codes basics
 
Reed Solomon Coding For Error Detection and Correction
Reed Solomon Coding For Error Detection and CorrectionReed Solomon Coding For Error Detection and Correction
Reed Solomon Coding For Error Detection and Correction
 
Hossein Taghavi : Codes on Graphs
Hossein Taghavi : Codes on GraphsHossein Taghavi : Codes on Graphs
Hossein Taghavi : Codes on Graphs
 
Encoder for (7,3) cyclic code using matlab
Encoder for (7,3) cyclic code using matlabEncoder for (7,3) cyclic code using matlab
Encoder for (7,3) cyclic code using matlab
 
Reed_Solomon_Implementation
Reed_Solomon_ImplementationReed_Solomon_Implementation
Reed_Solomon_Implementation
 
Turbo Code
Turbo Code Turbo Code
Turbo Code
 
Presentation
PresentationPresentation
Presentation
 
Paper id 312201514
Paper id 312201514Paper id 312201514
Paper id 312201514
 
40120140505011
4012014050501140120140505011
40120140505011
 
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
 
Hamming code system
Hamming code systemHamming code system
Hamming code system
 

Recently uploaded

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 

Recently uploaded (20)

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 

error control coding

  • 1. Error Control CODING Prepared by : Ola Mashaqi Suhad Malayshe Mais Masri Submitted to : Dr. Allam Mousa
  • 2. Topics to be discussed : What is channel coding Where it is used How to detect and correct error Hamming distance Linear block coding Syndrome coding
  • 3. Defintion of channel coding Error control coding ,detect, and often correct, symbols which are received in error The channel encoder separates or segments the incoming bit stream into equal length blocks of L binary digits and maps each L-bit message block into an N-bit code word where N > L There are M=2L messages and 2L code words of length N bits The channel decoder has the task of detecting that there has been a bit error and (if • possible) correcting the bit error
  • 4. ARQ (Automatic-Repeat-Request ) If the channel decoder performs error detection then errors can be detected and a feedback channel from the channel decoder to the channel encoder can be used to control the retransmission of the . code word until the code word is received without detectable errors There are two major ARQ techniques stop and wait continuous ARQ FEC (Forward Error Correction) If the channel decoder performs error correction then errors are not only detected but the bits in error can be identified and corrected (by bit )inversion
  • 5. There are two major ARQ techniques • stop and wait, in which each block of data is positively, or negatively, acknowledged by the receiving terminal as being error free before the next data block is transmitted, • continuous ARQ, in which blocks of data continue to be transmitted without waiting for each previous block to be acknowledged
  • 6. Where it used ? • Error control coding, generally, is applied widely in control and communications systems for aerospace applications, in mobile (GSM) cellular telephony and for enhancing security in banking and barcode readers.
  • 7. Error Control Coding (Channel Coding) particular error control methods : linear group codes, cyclic codes, the Golay code, BCH codes, Reed– Solomon codes and Hamming codes
  • 8. Block coding VS. convolutional coding Block coding The (n,k) block code is the code that convert k bit of the massage signal to n bit codeword . It block because it take number of bits from massage(information digit) and add redundant bits (parity digit) to it and do so to the rest of the bits. Convolutional Coding encoding a stream of data rather than blocks of data . The sequence of bits in a convolutional code depends Not only on the current bits of data but also on previous bits of data.
  • 9. Error rate control concept How to measure error performance ? Answer is BER : the average rate at which errors occur and is given by the product PbRb Pb: probability of error Rb : bit transmission rate in the channel BUT If BER is too large ! What to do to make it smaller .. • increase transmitter power(not efficient ) • Diversity : Frequency diversiy employs two different frequencies to transmit the same information , time diversity systems the same message is transmitted more than once at different times . • introduce full duplex transmission: implying simultaneous two-way transmission • ARQ and FEC
  • 10. Hamming Distance The Hamming distance between two code-words is defined as the number of places, .bits or digits in which they differ •The distance is important factor since it indicates how easy to change one valid code into another. •The weight of the codeword is defined as the number of ones in the codeword. : Example) Calculate the hamming distance and weight of the following codeword • 11100, 11011 Hamming distance = 3 bit The code word 11100 could changed to 11011 The weight of the codeword 1= 3 The weight of the codeword 2= 4 The minimum codeword weight =3
  • 11. (n, k) block codes: with k information digits going into the coder. n digits coming out after (n −k) redundant parity check digits. The rate, or efficiency, for this code (R) = k/n Rate is normally in the range 1/2 to unity.
  • 12. Linear group codes Group codes contain the all-zeros codeword and have the property referred to as closure . Advantage : it makes performance calculations with linear group codes particularly easy. taking any two codewords Ci and Cj , then Ci ⊕ Cj = Ck .
  • 13. Example a contain all-zeros codeword b ⊕ c=d , c ⊕ d=b , b ⊕ d=b .
  • 14. Performance prediction Hamming distances measurer to determine the overall performance of a block code consideration of each of the codewords with the all-zeros codewordis sufficient. Example 00000 00111 11100 11011 Dmin = 3 for this (5,2) code. Consider four codewords the weights of these are 0, 3, 3 and 4. the minimum weight in the weight structure (3) is equal to Dmin, the minimum Hamming distance for the code.
  • 15. Error detection and correction capability t :The maximum possible error correcting. Dmin :minimum Hamming distance e : is the ability of certain code to detect errors. t ≤ e.
  • 16. Error detection and correction capability Dmin is 3 e=1 , t=1 11001 &11000 If any single error occurs in one of the codewords it can therefore be corrected. Dmin − 1 errors can be detected there is no error correction Longer codes with larger Hamming distances offer greater detection and correction capability by selecting different t and e
  • 17. Standerd The UK Post Office Code Standards Advisory Group(POCSAG) code k = 21 and n = 32 R ≈ 2/3 Dmin = 6. 3 bit detection 2 bit correction capability.
  • 18. Syndrome decoding Error location 0000000 1000000 0100000 0010000 0001000 0000100 0000010 0000001 Syndrome 000 111 011 101 110 100 010 001 syndrome is independent of the transmitted codeword and only depends on the error sequence A decoding table tells a decoder how to correct errors that might have corrupted the code during transmission
  • 19. Syndrome decoding d is a message vector of k digits G is the k × n generator matrix c is the n-digit codeword corresponding to the message d, dG=c Where G is the generation matrix Furthermore: Hc=0 where H is the (even) parity check matrix corresponding to G
  • 20. Syndrome decoding r=c⊕e r is the sequence received after transmitting c . e is an error vector representing the location of the errors which occur in the received sequence r. syndrome vector s s = H r = H (c ⊕ e) = H c ⊕ H e = 0 ⊕ H e =He s is easily calculated
  • 21. The generator matrix(G) : The generator matrix G for an (n, k) block code can be used to generate the appropriate n-digit codeword from any given k-digit data sequence . Parity check matrix (H) : does not contain any codewords. (7,4) block block code H matrix . The right side of G is the transpose of the left hand portion of H. Parity check section must : must contain at least two ones. rows cannot be identical.
  • 22. G is the k × n generator matrix . The right side of G is the transpose of the left hand portion of H. .
  • 23. use this syntax to Produce syndrome decoding table t = syndtable(h) returns a decoding table for an error-correcting binary code having codeword length n and message length http://www.mathworks.com/help/comm/ref/syndtable.html
  • 24. % Use a [7,4] Hamming code. m = 3; n = 2^m-1; k = n-m; parmat = hammgen(m); % Produce parity-check matrix. trt = syndtable(parmat); % Produce decoding table. recd = [1 0 0 1 1 1 1] % Suppose this is the received vector. syndrome = rem(recd * parmat',2); syndrome_de = bi2de(syndrome,'left-msb'); % Convert to decimal. disp(['Syndrome = ',num2str(syndrome_de),... ' (decimal), ',num2str(syndrome),' (binary)']) corrvect = trt(1+syndrome_de,:) % Correction vector % Now compute the corrected codeword. correctedcode = rem(corrvect+recd,2)
  • 25.
  • 26. Matlab n = 6; k = 4; % Set codeword length and message length % for a [6,4] code. msg = [1 0 0 1 1 0 1 0 1 0 1 1]'; % Message is a binary column. code = encode(msg,n,k,'cyclic'); % Code will binary column. msg' code'
  • 27. msg consists of 12 entries, which are interpreted as three 4-digit (because k = 4) messages. The resulting vector codecomprises three 6digit (because n = 6) codewords, which are concatenated to form a vector of length 18. The parity bits are at the beginning of each codeword
  • 28. Matlab :hamming code Create a Hamming Code in Binary Format Using Simulink
  • 29. Matlab :hamming code Reduce the Error Rate Using a Hamming Code