softdemodulator.h

来自「根据LDPC码中码子的构造方法中的PEG算法」· C头文件 代码 · 共 35 行

H
35
字号
/************************************** * * soft demodulator  * (to get the channel transmission probabilities from the received noisy symbols) * **************************************/#ifndef SOFTDEMODULATOR#define SOFTDEMODULATOR#undef SOFTDEMODULATOR_DEBUGclass SoftDemodulator {private:  double sigma;  double factor1;  double factor2;  int isiSize;  int *isiAlphabet;public:    SoftDemodulator(double sigma, int isiSize);  ~SoftDemodulator();  void getProbabilities(const double *channelSymbols, int length, double *(*prob));  void setSigma(double sigma);};#endif

⌨️ 快捷键说明

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