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

조회 수: 2 (최근 30일)
tub kalman
tub kalman 2019년 9월 9일
답변: KALYAN ACHARJYA 2019년 9월 9일
whats the MATLAB command that do this task ??

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 9월 9일
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)
??

카테고리

Help CenterFile Exchange에서 Error Detection and Correction에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by