MATLAB爱好者论坛-LabFans.com

MATLAB爱好者论坛-LabFans.com (https://www.labfans.com/bbs/index.php)
-   资料存档 (https://www.labfans.com/bbs/forumdisplay.php?f=72)
-   -   比较modem.oqpsk概率误差和ber (https://www.labfans.com/bbs/showthread.php?t=23095)

poster 2019-12-10 20:30

比较modem.oqpsk概率误差和ber
 
您好目前我在matlab中有以下代码

values = [0;1;0;0;1;0;1;0]; % can contain only 0s and 1s h = modem.oqpskmod; y = modulate(h, values); g = modem.oqpskdemod(h); z = demodulate(g,y); BER = sum(logical(values(:)-z(:)))/numel(values);% thanks to gnovice! 现在我的问题是我如何将这个BER与OQPSK的概率误差进行比较?



[B]回答:[/B]

在通过上面的调制/解调过程运行了许多不同的values集之后,所得的平均BER度量[B]是[/B]对发生错误的按位概率的估计。

也许您想将上述[I]估计值[/I]与实际得出的[I]公式[/I]进行比较,以得出预期的错误率是多少? [URL="http://en.wikipedia.org/wiki/Phase-shift_keying#Bit_error_rate_2"]此Wikipedia页面上[/URL]说,QPSK(我也假设是OQPSK)发生误码的概率由以下公式给出:

Pb = Q(sqrt(2*Eb/N0)); 其中函数Q和参数Eb和N0被描述[URL="http://en.wikipedia.org/wiki/Phase-shift_keying#Definitions"]在这里[/URL] 。



[url=https://stackoverflow.com/questions/2185107]更多&回答...[/url]


所有时间均为北京时间。现在的时间是 04:55

Powered by vBulletin
版权所有 ©2000 - 2025,Jelsoft Enterprises Ltd.