Hello everyone, I am using the codinglib module to create goppa codes but my problem is that i can't understand-implement the error-correction procedure using the Berlekamp-Massey Algorithm. If someone has any suggestion (Books, papers, decoding algorithm examples) It will be very helpful! Everything i found in google wasn't very helpful!
Thanks in advance! CODE SAMPLE: bigF.<x> = GF(2^5) P.<z> = bigF[] go = z^3 + z + 1 go.is_irreducible() ###True alph=bigF.list() Ct = goppa.GoppaBinary(bigF,32,go,alph) H=Ct.parity_check_matrix() Ran = Ct.random_codeword() word=Ran+e #e is the error vector bma_all=bma(word) -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
