Hamming codes
Below is an example of the Hamming code. The bits are the source bits, and the bits are the parity bits. The parity bits are set such that the parity of the bits within each circle is even (zero since each bit can be either or ). The transmitted codeword can be represented by the matrix .
We have
where is addition modulo . Then and so on. In matrix form this is expressed as
Decoding is then the reverse process. The syndrome is given by
Assuming each of has not been flipped, the syndrome identifies which bit of should be flipped to make the parity even again. For example, if the syndrome is , then the syndromes involving and have odd parity. Flipping either or would make these syndroms even parity, but flipping would affect the other syndrome, so is flipped.
Some code that implements a Hamming encoder/decoder is given below.
= [1 1 1 0; 0 1 1 1; 1 0 1 1]
P = [1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1]
I₄ = [1 0 0; 0 1 0; 0 0 1]
I₃
encode(s::Vector{T}) where {T} = vcat(I₄, P)*s .% 2
decode(t::Vector{T}) where {T} = begin
= hcat(P, I₃)*t .% 2
syndrome if syndrome == [1;0;1]
= (t + [1; 0; 0; 0; 0;0;0]) .% 2
t elseif syndrome == [1;1;0]
= (t + [0; 1; 0; 0; 0;0;0]) .% 2
t elseif syndrome == [1;1;1]
= (t + [0; 0; 1; 0; 0;0;0]) .% 2
t elseif syndrome == [0;1;1]
= (t + [0; 0; 0; 1; 0;0;0]) .% 2
t end
return t[1:4]
end
@test encode([0;1;0;0]) == [0;1;0;0;1;1;0]
@test decode([0;1;0;0;1;1;0]) == [0;1;0;0]
@test decode([0;1;1;0;1;1;0]) == [0;1;0;0]
Encoding a picture of an owl, adding some noise with probability
, and decoding the picture again
gives the following result.