property galois.ReedSolomon.is_systematic : bool

Indicates if the code is configured to return codewords in systematic form.

Examples

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

In [2]: rs.is_systematic
Out[2]: True

Last update: Sep 02, 2022