Borrar filtros
Borrar filtros

LDPC encoding using MATLAB encoder

7 visualizaciones (últimos 30 días)
Chetan Fadnis
Chetan Fadnis el 29 de Nov. de 2023
Respondida: Walter Roberson el 29 de Nov. de 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.

Respuesta aceptada

Walter Roberson
Walter Roberson el 29 de Nov. de 2023
I = randi([0 1],43200,1); % INFORMATION BITS
H = dvbs2ldpc(2/3);
l = comm.LDPCEncoder(H);
Warning: comm.LDPCEncoder will be removed in a future release. Use ldpcEncode instead. See this release note for more information.
codeword = l(I);

Más respuestas (0)

Categorías

Más información sobre Error Detection and Correction en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by