C/C++
rserror.txt
Associated article: Reed-Solomon Error Correction
Tags: Testing C/C++ Tools
Published source code accompanying Hugo Lyppens' article on a software implementation (in C++ and assembly language) of Reed- Solomon error-correction. Also see RSERROR.ZIP.
Reed-Solomon Error Correction by Hugo Lyppens Example 1: (x4 + x2) + (x2 + 1) =(x4 + 1) 0 - (x4 + x) = (x4 + x) x + x = 0 x - x = 0 Example 2: (x4 + x2) * (x2 + 1) = (x6 + x2) x8 = x6 + x5 + x4 +1 x255 = x0 = 1 Example 3: mov bl,I mov bh,J ...


