property galois.ReedSolomon.t : int

The error-correcting capability of the code. The code can correct \(t\) symbol errors in a codeword.

Examples

In [1]: rs = galois.ReedSolomon(15, 9); rs
Out[1]: <Reed-Solomon Code: [15, 9, 7] over GF(2^4)>

In [2]: rs.t
Out[2]: 3

Last update: Jul 28, 2022