LDPC encoding using MATLAB encoder
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Chetan Fadnis
le 29 Nov 2023
Réponse apportée : Walter Roberson
le 29 Nov 2023
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 commentaires
Réponse acceptée
Walter Roberson
le 29 Nov 2023
I = randi([0 1],43200,1); % INFORMATION BITS
H = dvbs2ldpc(2/3);
l = comm.LDPCEncoder(H);
codeword = l(I);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Error Detection and Correction dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!