I'm new to Error Correction Code (ECC). Take the Reed-Solomon code (RS(n,k)) as an example, it encodes k symbols into n symbols with n-k parity symbols and it can correct (n-k)/2 error symbols.
I want to know whether there is design or implementation for RS(n,k) with large n like 600, and k be 400? This means it can correct about 100 error symbols. If it is not possible, what is the limitation? If it's possible, what is the time cost, especially for decoding since it is more complicated than encoding, for big data.
I look up several pieces of literature. Although n=544 is possible, however, the current solution only supports RS(544,514) which means the error correction capability is only (544-514)/2=15.
I know the hardest part of decoding is to solve key equation. But I don't know how to estimate the time cost of decoding.
Thanks!