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

3 ビュー (過去 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 Center および File ExchangeError Detection and Correction についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by