An open API service indexing awesome lists of open source software.

https://github.com/sfp932705/ecc

Error correction codes in python.
https://github.com/sfp932705/ecc

ecc error-correction error-correction-codes finite-field-arithmetic finite-fields galois-arithmetic galois-field hamming hamming-code notebook python reed-solomon reed-solomon-codes

Last synced: 6 months ago
JSON representation

Error correction codes in python.

Awesome Lists containing this project

README

          

# Error Correction Codes

This notebook presents an implementation of different Error Correction Codes in Python.

A message class is provided which allows to convert from strings and ints to bits and back using the desired encoding scheme. This class allows to alter sequences of bits to simulate a message that has been received with noise and hence it is wrongly interpreted by the receiver.

For Hamming error correction examples preview the [hamming.ipynb](hamming.ipynb) notebook.

For Reed-Solomon error correction examples preview the [reed_solomon.ipynb](reed_solomon.ipynb) notebook.