viterbi decoder
19 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
decoder2=vitdec(decode2,trel,20,'cont','hard');
here the length of decode2 is 75 bits. but we are getting the error as:Length of the input code vector must be a multiple of the number of bits in an input symbol. please help us.
0 comentarios
Respuestas (1)
Walter Roberson
el 20 de En. de 2012
log2(trel.numInputSymbols) must evenly divide length(decode2)
Each symbol in the vector decoded consists of log2(trellis.numInputSymbols) bits.
2 comentarios
Walter Roberson
el 21 de En. de 2012
As I indicated at the beginning of my response,
log2(trel.numInputSymbols)
The trel here is the same as the trel variable you are passing as the second argument to vitdec .
Ver también
Categorías
Más información sobre Error Detection and Correction en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!