문제

How to find the Hamming distance of a code generated by a certain CRC?

Assume that I have a generating polynomial of order, say, 4 and 11 bits of data.

How to compute the HD basing only on these information?

도움이 되었습니까?

해결책

You should be able to pad your results with zeros making both values 11bits long. Computing an XOR on the two bit strings and counting the ones should yield the hamming distance for your data set.

Hope this helps...

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top