📄 softdemodulator.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 + -