Questions tagged [ecc]
The ecc tag has no summary.
10 questions
-2 votes
0 answers
35 views
Is it possible to find the error location polynomial in t cycles for Reed–Solomon Code using a modified RiBM algorithm?
Recently I've read a paper on Reed–Solomon Code, in the decoding part, the author proposed a modified RiBM algorithm which use t cycles(while RiBM algorithm needs 2t cycles) to find the error location ...
0 votes
0 answers
37 views
How to solve KES equation of BCH in SiBM algorithm?
I have a BCH decoder which solve KES equation using RiBM algorithm, the RiBM Code in matlab is follows: ...
1 vote
1 answer
92 views
Decoding $\text{RS}(n, k)$ using Reformulated inversionless Berlekamp-Massey algorithm with only $t$ iterations in KES step?
I'm working on RS Enc&Dec, for decoder, I use Reformulated inversionless Berlekamp-Massey (RiBM) algorithm to obtain $\Lambda$ and $\Omega$. However, the original RiBM needs $2t$ iterations (here, ...
0 votes
1 answer
206 views
What does "invariant to bias and gain changes" mean?
Reading this paper, about the ECC criterion (which is included in opencv3), In section 3, the following is stated, with regard to the following equation: (4) $\left\|\frac{i_r}{\left\|i_r\right\|} - \...
1 vote
1 answer
5k views
How to compute generator matrix from a parity check matrix?
I have a parity matrix ("H") that is not in canonical form (the identity matrix is not on the right side). I'm trying to programatically calculate the generator matrix ("G") from it. The Wikipedia ...