Experiment 4 Object:: If The Property... Is Set To... Then Is..
Experiment 4 Object:: If The Property... Is Set To... Then Is..
EXPERIMENT 4
OBJECT:
Simulation of Low-Density Parity-Check (LDPC) codes with LDPC encoder and decoder.
INTRODUCTION :
Low-Density Parity-Check (LDPC) codes are linear error control codes with:
Sparse parity-check matrices
Long block lengths that can attain performance near the Shannon limit (see fec.ldpcenc and
fec.ldpcdec)
The decoding process is done iteratively. If the number of iterations is too small, the algorithm
may not converge. You may need to experiment with the number of iterations to find an
appropriate value for your model. For details on the decoding algorithm, see Decoding
Algorithm.
LAB WORK:
Decoding Method
This method uses the properties DecisionType, OutputFormat, NumIterations, and DoParityChecks, and
updates the values for FinalParityChecks, and ActualNumIterations.
Decoding Algorithm
% Noise parameters
SNRdB = 1;
sigma = sqrt(10^(-SNRdB/10));
OUTPUT