I understand CDM but really don't get this part, of the wiki example.
yellow - why is it multiplied by 2? wouldn't that be more of a polar - frequency division multiplex? because your adding the depth of 2?
red - is that inverse code0.(1,1)
is there some XOR operation im completely missing? why does red change positive and yellow not turn negative?
code0 = (1, 1), data0 = (1, 0, 1, 1)
encode0 = 2(1, 0, 1, 1) (1, 1, 1, 1) = (1, 1, 1, 1)
signal0 = encode0 ⊗ code0
= (1, 1, 1, 1) ⊗ (1, 1)
= (1, 1, 1, 1, 1, 1, 1, 1)
yellow - why is it multiplied by 2? wouldn't that be more of a polar - frequency division multiplex? because your adding the depth of 2?
red - is that inverse code0.(1,1)
code0 = (1, 1), signal = (0, 2, 2, 0, 2, 0, 2, 0)
decode0 = pattern.vector0
decode0 = ((0, 2), (2, 0), (2, 0), (2, 0)).(1, 1)
decode0 = ((0 + 2), (2 + 0), (2 + 0), (2 + 0))
data0=(2, 2, 2, 2), meaning (1, 0, 1, 1)
is there some XOR operation im completely missing? why does red change positive and yellow not turn negative?
