LDPC encoding using MATLAB encoder
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello,
I am writing following code, for encoding data to LDPC encoded bit stream. But it is giving error, Kindly help,
I = randi(1,43200); % INFORMATION BITS
H = dvbs2ldpc(2/3);
l = comm.LDPCEncoder(H);
codeword = encode(l,I);
-----> Error using encode
Not enough input arguments.
댓글 수: 0
채택된 답변
Walter Roberson
2023년 11월 29일
I = randi([0 1],43200,1); % INFORMATION BITS
H = dvbs2ldpc(2/3);
l = comm.LDPCEncoder(H);
codeword = l(I);
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
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!