数字调制解调实验报告#26
Open
Yan-anzhi wants to merge 6 commits into
Open
Conversation
🤖 自动评分结果提交者: @Yan-anzhi 📊 详细测试结果点击查看BPSK测试详情点击查看QPSK测试详情点击查看16-QAM测试详情点击查看报告检查详情💡 提示:
⏰ 评分时间: 2026/4/30 18:46:04 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
本次实验完成了数字调制解调系统的基础功能与部分扩展功能,主要包括:
完成 BPSK 调制函数,实现比特
0 -> +1、比特1 -> -1的映射,并生成 BPSK 星座图。完成 QPSK 调制函数,采用 Gray 编码方式将每 2 个比特映射为 1 个复数符号,并生成 QPSK 星座图。
完成 16-QAM 调制函数,采用 I/Q 两路 Gray 编码映射,并进行平均功率归一化,生成 16-QAM 星座图。
完成 BPSK、QPSK 和 16-QAM 的解调函数,能够根据接收符号恢复原始比特序列。
完成 BER 性能测试,生成随机比特序列,经过调制、AWGN 加噪、解调和误码率计算,绘制不同调制方式的 BER vs SNR 对比曲线。
使用自动评分测试验证代码正确性,BPSK、QPSK 和 16-QAM 调制测试均已通过。