Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

egolay.h

Go to the documentation of this file.
00001 // 
00002 // SPUC - Signal processing using C++ - A DSP library
00003 /*---------------------------------------------------------------------------*
00004  *                                   IT++                                    *
00005  *---------------------------------------------------------------------------*
00006  * Copyright (c) 1995-2001 by Tony Ottosson, Thomas Eriksson, Pål Frenger,   *
00007  * Tobias Ringström, and Jonas Samuelsson.                                   *
00008  *                                                                           *
00009  * Permission to use, copy, modify, and distribute this software and its     *
00010  * documentation under the terms of the GNU General Public License is hereby *
00011  * granted. No representations are made about the suitability of this        *
00012  * software for any purpose. It is provided "as is" without expressed or     *
00013  * implied warranty. See the GNU General Public License for more details.    *
00014  *---------------------------------------------------------------------------*/
00015 
00026 #ifndef __egolay_h
00027 #define __egolay_h
00028 
00029 #include <vector.h>
00030 #include <matrix.h>
00031 namespace SPUC {
00042 class Extended_Golay {
00043 public:
00045   Extended_Golay();
00047   bvec encode(const bvec &uncoded_bits);
00049   bvec decode(const bvec &coded_bits);
00051   bmat get_G() { return G; }
00052 private:
00053     bmat B,G;
00054 };
00055 }
00056 #endif // __egolay_h

Generated on Fri Sep 16 11:02:19 2005 for spuc by  doxygen 1.4.4