generate a crc bit using P(x)= 1 1 0 1 0 0 1 0 10 and G(x)=x3 + x +1

2 visualizaciones (últimos 30 días)
tub kalman
tub kalman el 9 de Sept. de 2019
Respondida: KALYAN ACHARJYA el 9 de Sept. de 2019
whats the MATLAB command that do this task ??

Respuestas (1)

KALYAN ACHARJYA
KALYAN ACHARJYA el 9 de Sept. de 2019
Matlab Documentation here
I tried to implement the CRC from here
%Transmitter:
disp('###### Transmitter ######');
p=[1 1 0 1 0 0 1 0 1 0];
g=[1 0 1 1]; %G(x)=x3 + x +1
[quot_t rem_t]=gfdeconv(p,g)
disp('###### Receiver ######');
[quot_r rem_r]=gfdeconv([p,rem_t],g)
??

Categorías

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

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by