LDPC ENCODING USING fecldpcenc
조회 수: 11 (최근 30일)
이전 댓글 표시
, Now I have one parity check matrix H of one LDPC (low density parity check) code, and I want to use the command l = fec.ldpcenc(H) to obtain the corresponding generator matrix. However, when I run the program, the command window shows the error message "the last (N-K) columns of the parity-check matrix must be invertible in GF(2)." Can you tell me how to transform my parity check matrix into a proper one in a quickly way?
Thank you!
댓글 수: 1
Khushboo Singh
2012년 12월 27일
use this may be this can help u..
H = dvbs2ldpc(2/3);
l = fec.ldpcenc(H);
codeword = encode(l,I);
답변 (3개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Error Detection and Correction에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!