GithubHelp home page GithubHelp logo

reed-solomon's Introduction

Reed-Solomon on Composite Field

This projects implements a composite Reed Solomon coder based on GF((2^8)^2) in C. The sample function in main.c shows an example of usage.

To use it in your own project, follow the following steps:

  1. Include header:
#include "comp_rscoding.h"
  1. Create Table Create a pre-computed table in GF(2^8) by:
struct Tables *tables = newTables(285, 8);
  1. Prepare message: Put the message of length k that you would like to encode as an array, and create a message polynomial by:
struct Polynomial *mesecc_poly = newPolynomial(message_arr, k);
  1. Encode:
struct Polynomial *encoded_mesecc_poly = rs_encode_msg(mesecc_poly, n - k, tables);
  1. Decode:
struct Polynomial *corrected_message_poly = rs_correct_msg(encoded_mesecc_poly, n - k, tables, 16);
  1. If correction is possible, the above function will return a corrected message in
corrected_message_poly->poly_arr

If correction is possible when the message is too long or if there are too many errors, an error message will show up and the program will terminate.

To print a message from a polynomial:

printPolynomial(corrected_message_poly);

To run the sample, which encodes and decodes RS(12000, 10000):

compile

make

run

./main

reed-solomon's People

Contributors

peter-pater avatar yangshi0302 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.