比较 modem.oqpsk 概率误差和 ber

发布于 2024-08-20 12:01:26 字数 366 浏览 12 评论 0原文

您好,目前我的 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 的概率误差进行比较?

hi currently i have the following code in my 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!

now my question is how can i compare this BER to the Probability Error of the OQPSK?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

各自安好 2024-08-27 12:01:26

通过上述调制/解调过程运行多个不同的后,得到的平均 BER 测量是对某个值的按位概率的估计。发生错误。

也许您想将上述估计值与实际导出的公式进行比较,以了解预期错误率是多少? 此维基百科页面表示 QPSK 的误码概率(并且我假设也适用于 OQPSK)由以下公式给出:

Pb = Q(sqrt(2*Eb/N0));

其中函数 Q 以及参数 EbN0 描述为 此处

After you've run a number of different sets of values through the modulation/demodulation process above, the resulting average BER measure is an estimate of the bit-wise probability for an error to occur.

Perhaps you are wanting to compare the above estimate to an actual derived formula for what the expected error rate is? This Wikipedia page says that the probability of bit-error for QPSK (and I assume also for OQPSK) is given by the formula:

Pb = Q(sqrt(2*Eb/N0));

where the function Q and the parameters Eb and N0 are described here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文