1 Star 0 Fork 2

Gordon.Mao/QAM-OFDM-Learning-MATLAB

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
learn_02_modulation_demodulationm.m 476 Bytes
一键复制 编辑 原始数据 按行查看 历史
JourneyBean 提交于 2022-01-31 00:17 . Initial commit, blog part 1
% 同步调制解调实验
Fs = 1000; % 采样频率
fs = 10; % 正弦信号频率
fc = 100; % 载波频率
t1 = 0, t2 = 1; % 仿真时间
t = t1:1/Fs:t2-1/Fs;
% 正弦信号
s1 = sin( 2*pi*fs*t );
% 载波
s2 = sin( 2*pi*fc*t );
% 调制
s = s1 .* s2;
% 解调
s3 = s .* s2;
% 输出
figure(1);
subplot(1,3,1),plot(s1),title('原始信号');
subplot(1,3,2),plot(s), title('调制信号');
subplot(1,3,3),plot(s3),title('解调信号');
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/MaoMaoRain/qam-ofdm-learning-matlab.git
git@gitee.com:MaoMaoRain/qam-ofdm-learning-matlab.git
MaoMaoRain
qam-ofdm-learning-matlab
QAM-OFDM-Learning-MATLAB
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385