Misplaced Pages

Berlekamp–Massey algorithm

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.

The Berlekamp–Massey algorithm is an algorithm that will find the shortest linear-feedback shift register (LFSR) for a given binary output sequence. The algorithm will also find the minimal polynomial of a linearly recurrent sequence in an arbitrary field . The field requirement means that the Berlekamp–Massey algorithm requires all non-zero elements to have a multiplicative inverse. Reeds and Sloane offer an extension to handle a ring .

#387612

6-525: Elwyn Berlekamp invented an algorithm for decoding Bose–Chaudhuri–Hocquenghem (BCH) codes . James Massey recognized its application to linear feedback shift registers and simplified the algorithm. Massey termed the algorithm the LFSR Synthesis Algorithm (Berlekamp Iterative Algorithm), but it is now known as the Berlekamp–Massey algorithm. The Berlekamp–Massey algorithm is an alternative to

12-420: Is a copy of the last discrepancy d (explained below) since L was updated and initialized to 1. m is the number of iterations since L , B ( x ), and b were updated and initialized to 1. Each iteration of the algorithm calculates a discrepancy d . At iteration k this would be: If d is zero, the algorithm assumes that C ( x ) and L are correct for the moment, increments m , and continues. If d

18-426: Is not zero, the algorithm adjusts C ( x ) so that a recalculation of d would be zero: The x term shifts B(x) so it follows the syndromes corresponding to b . If the previous update of L occurred on iteration j , then m = k − j , and a recalculated discrepancy would be: This would change a recalculated discrepancy to: The algorithm also needs to increase L (number of errors) as needed. If L equals

24-477: The Reed–Solomon Peterson decoder for solving the set of linear equations. It can be summarized as finding the coefficients Λ j of a polynomial Λ( x ) so that for all positions i in an input stream S : In the code examples below, C ( x ) is a potential instance of Λ ( x ). The error locator polynomial C ( x ) for L errors is defined as: or reversed: The goal of the algorithm is to determine

30-503: The actual number of errors, then during the iteration process, the discrepancies will become zero before n becomes greater than or equal to 2 L . Otherwise L is updated and algorithm will update B ( x ), b , increase L , and reset m = 1. The formula L = ( n + 1 − L ) limits L to the number of available syndromes used to calculate discrepancies, and also handles the case where L increases by more than 1. The algorithm from Massey (1969 , p. 124) for an arbitrary field: In

36-403: The minimal degree L and C ( x ) which results in all syndromes being equal to 0: Algorithm: C ( x ) is initialized to 1, L is the current number of assumed errors, and initialized to zero. N is the total number of syndromes. n is used as the main iterator and to index the syndromes from 0 to N −1. B ( x ) is a copy of the last C ( x ) since L was updated and initialized to 1. b

#387612