当前位置:网站首页>[matlab] matlab simulation modulation system - DSB system
[matlab] matlab simulation modulation system - DSB system
2022-07-04 05:00:00 【Embedded workplace】
Catalog
1、DSB System
close all;
clear all;
clc;
fm = 1; % Maximum frequency of source
fc = 10; % Carrier center frequency
dt = 0.001; % Time sampling interval
T = 5; % Signal duration
t = 0:dt:T;
mt = cos(2*pi*fm*t); % baseband signal
%DSB Modulated signal
s_dsb = mt.*cos(2*pi*fc*t);
% % Generate narrow-band Gaussian white noise
% B = 2*fm;
% N0 = 0.01; % White noise unilateral power spectral density
% noise = noise_nb(fc,B,N0,t);
% s_dsb = s_dsb+noise;
figure(1);
subplot(2,1,1); plot(t,mt,'b-');
xlabel('t (s)'); title(' baseband signal ');
grid on;
subplot(2,1,2); plot(t,s_dsb,'b-');
hold on; plot(t,mt,'r:');
xlabel('t 边栏推荐
- Definition of DCDC power supply current
- First knowledge of batch processing
- 海力士EMMC5.0及5.1系列对比详解
- How do good test / development programmers practice? Where to go
- EVM proof in appliedzkp zkevm (11)
- Encryption and decryption
- 【MATLAB】MATLAB 仿真数字基带传输系统 — 双极性基带信号(第 I 类部分响应波形)的眼图
- STM32F1与STM32CubeIDE编程实例-74HC595驱动4位7段数码管
- Error response from daemon: You cannot remove a running container 8d6f0d2850250627cd6c2acb2497002fc3
- 中职组网络安全—内存取证
猜你喜欢

PostgreSQL 正式超越 MySQL,这家伙也太强了吧!

Zhengzhou zhengqingyuan Culture Communication Co., Ltd.: seven marketing skills for small enterprises

分享一些我的远程办公经验

NTFS 安全权限

Introduction and application of rampax in unity: optimization of dissolution effect

Simple g++ and GDB debugging

ADB tools

TCP状态转换图

关闭的数据能用dbca删除吗? 能

rac删除损坏的磁盘组
随机推荐
The paddlehub face recognition scheme is deployed, and the trained model is deployed and applied in pytchrom
【MATLAB】通信信号调制通用函数 — 傅里叶逆变换
Kivy tutorial 07 component and attribute binding implementation button button click to modify the label component (tutorial includes source code)
Annex V: briefing on the attack process docx
appliedzkp zkevm(13)中的Public Inputs
关于solidworks standard无法获得许可 8544问题的总结
Annex II: confidentiality agreement for offensive and defensive drills docx
附件二:攻防演练保密协议.docx
Several smart watch related chips Bluetooth chip low power consumption
《Cross-view Transformers for real-time Map-view Semantic Segmentation》论文笔记
全国职业院校技能大赛(中职组)网络安全竞赛试题—解析
2022广东省赛——编码信息获取 解析flag
【MATLAB】通信信号调制通用函数 — 带通滤波器
Create ASM disk through DD
每日刷题记录 (十二)
C basic (VII) document operation
Error response from daemon: You cannot remove a running container 8d6f0d2850250627cd6c2acb2497002fc3
Sample template of software design document - learning / practice
Binary search tree
【MATLAB】通信信号调制通用函数 — 低通滤波器