当前位置:网站首页>[matlab] matlab simulation - simulate the AM modulation process of the modulation system
[matlab] matlab simulation - simulate the AM modulation process of the modulation system
2022-07-04 05:00:00 【Embedded workplace】
Catalog
2、AM Modulation process operation results
1、AM Modulation process
clear all;
clc;
% Generate baseband signal
lower = 0;
upper = 3;
step = (upper-lower)/1e3; % Time sampling interval
t = lower:step:upper;
fm = 1; % The highest frequency of baseband signal
mt = cos(2*pi*fm*t);
% Conduct AM modulation - situation 1
A = 1.5;
fc = 10; % Carrier center frequency
s_AM = (A+mt).*cos(2*pi*fc*t);
figure;
subplot(3,2,1); plot(t,mt,'b-');
hold on; plot(t,A*ones(size(t)),'r-');
xlabel('t (s)'); title
边栏推荐
- Definition of DCDC power supply current
- 中科磐云—2022广西逆向解析思路
- Annex II: confidentiality agreement for offensive and defensive drills docx
- Using jsts in esmodule environment
- 附件一:202x年xxx攻防演习授权委托书
- 中職組網絡安全—內存取證
- Technology Management - learning / practice
- Simple g++ and GDB debugging
- 【MATLAB】通信信号调制通用函数 — 窄带高斯白噪声的生成
- 在代碼中使用度量單比特,從而生活更美好
猜你喜欢
Fault analysis | mongodb 5.0 reports an error, and the legal instruction solves it
Zhengzhou zhengqingyuan Culture Communication Co., Ltd.: seven marketing skills for small enterprises
Niuke Xiaobai monthly race 49
中職組網絡安全—內存取證
附件六:防守工作簡報.docx
Developing mqtt access program under QT
Talking about JVM
关于solidworks standard无法获得许可 8544问题的总结
Correct the classpath of your application so that it contains a single, compatible version of com.go
拼夕夕二面:说说布隆过滤器与布谷鸟过滤器?应用场景?我懵了。。
随机推荐
如何构建属于自己的知识引擎?社群开放申请
Introduction and application of rampax in unity: optimization of dissolution effect
Error response from daemon: You cannot remove a running container 8d6f0d2850250627cd6c2acb2497002fc3
Test cs4344 stereo DA converter
简单g++和gdb调试
中职组网络安全—内存取证
技术管理 - 学习/实践
appliedzkp的zkevm(12)State Proof
中科磐云—2022广西逆向解析思路
【MATLAB】通信信号调制通用函数 — 窄带高斯白噪声的生成
Encryption and decryption
[go] database framework Gorm
每日刷题记录 (十二)
QT qtableview data column width adaptation
Annex II: confidentiality agreement for offensive and defensive drills docx
全国职业院校技能大赛(中职组)网络安全竞赛试题—解析
加密和解密
Talking about JVM
MySQL JDBC programming
RPC - grpc simple demo - learn / practice