⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 softdemodulator.h

📁 根据LDPC码中码子的构造方法中的PEG算法
💻 H
字号:
/************************************** * * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -