Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
bit-flipping decoding
#4
(Aug-18-2021, 02:15 PM)jefsummers Wrote: My last math course was in 1979, so my understanding of the notation is a bit rusty. Can you explain line 11 in words? Or better, what steps you would take to perform that line?

Thank you very much for your reply, @jefsummers. The steps for performing line 11:
  1. Get the value of B based on the matrix H. since matrix H is: [Image: parity-check-matrix.png], then B_0 which it should take from 1st row of H, the value is: B_0 = [0, 1, 3]. And the same pattern until B_3 that taken from 4th row with value: B_3 = [2, 3, 5]. In my code, it is in line 20.

  2. Set the value for i_prime with the same value of B_j. For example, if j = 0, B_0 = [0, 1, 3], then i_prime = 0, 1, 3. And i_prime will be the constraints for XOR operation of value in matrix M, means that when j = 0, i = 0, B_0 = [0, 1, 3], i_prime = 0, 1, 3, when E_0, 0 for i_prime = 0 the XOR operation will be M_1 ^ M_3 (M_0 is not included since i = i_prime = 0)

I have attached the calculation that I have done manually, and I hope it will help.
   
   
Reply


Messages In This Thread
bit-flipping decoding - by divon - Aug-18-2021, 08:16 AM
RE: bit-flipping decoding - by jefsummers - Aug-18-2021, 02:15 PM
RE: bit-flipping decoding - by divon - Aug-19-2021, 02:16 AM
RE: bit-flipping decoding - by Larz60+ - Aug-18-2021, 06:57 PM
RE: bit-flipping decoding - by divon - Aug-19-2021, 02:31 AM
RE: bit-flipping decoding - by divon - Aug-19-2021, 10:32 AM
RE: bit-flipping decoding - by divon - Aug-20-2021, 08:40 AM
RE: bit-flipping decoding - by divon - Aug-24-2021, 11:33 PM
RE: bit-flipping decoding - by divon - Aug-25-2021, 12:52 AM
RE: bit-flipping decoding - by Larz60+ - Aug-25-2021, 03:13 AM
RE: bit-flipping decoding - by divon - Aug-26-2021, 11:25 PM
RE: bit-flipping decoding - by Larz60+ - Aug-27-2021, 02:42 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  base64 decoding paul18fr 0 1,317 Mar-13-2022, 05:56 PM
Last Post: paul18fr

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020