property galois.ReedSolomon.field : Type[FieldArray]

The FieldArray subclass for the \(\mathrm{GF}(q)\) field that defines the Reed-Solomon code.

Examples

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

In [2]: rs.field
Out[2]: <class 'galois.GF(2^4)'>

In [3]: print(rs.field)
<class 'galois.GF(2^4)'>

Last update: Aug 27, 2022