sequentialrootgeneratorpolynomialcreator.h

来自「心电图小波零树压缩演算法的研究」· C头文件 代码 · 共 51 行

H
51
字号
/*  *********************************************************************  *                                                                   *  *        Galois Field Arithmetic Library (version 0.0.1)            *  *                                                                   *  * Class: Sequential Root Generator Polynomial Creator               *  * Version: 0.0.1                                                    *  * Author: Arash Partow - 2000                                       *  * URL: http://www.partow.net/projects/galois/index.html             *  *                                                                   *  * Copyright Notice:                                                 *  * Free use of this library is permitted under the guidelines and    *  * in accordance with the most current version of the Common Public  *  * License.                                                          *  * http://www.opensource.org/licenses/cpl.php                        *  *                                                                   *  **********************************************************************/#ifndef INCLUDE_SEQUENTIALROOTGENERATORPOLYNOMIALCREATOR_H#define INCLUDE_SEQUENTIALROOTGENERATORPOLYNOMIALCREATOR_H#include "GaloisField.h"#include "GaloisFieldElement.h"#include "GaloisFieldPolynomial.h"namespace galois{   class SequentialRootGeneratorPolynomialCreator   {     public:       SequentialRootGeneratorPolynomialCreator(GaloisField* _gf = NULL, const unsigned int _initial_index = 0, const unsigned int _num_elements = 0);      ~SequentialRootGeneratorPolynomialCreator(){}       GaloisFieldPolynomial create();     private:       GaloisField* gf;       unsigned int initial_index;       unsigned int num_elements;   };}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?