当前位置:网站首页>[matlab] matlab simulation modulation system SSB system
[matlab] matlab simulation modulation system SSB system
2022-07-04 05:00:00 【Embedded workplace】
Catalog
1、SSB System
close all;
clear all;
clc;
fm = 1; % Frequency of baseband signal
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);
%SSB modulation
% s_ssb = real(hilbert(mt).*exp(j*2*pi*fc*t) ); % The upper sideband
s_ssb = real(conj(hilbert(mt)).*exp(j*2*pi*fc*t) ); % Lower sideband
% % consider AWGN Influence
% B = fm; N0 = 0.01;
% noise = noise_nb(fc,B,N0,t);
% s_ssb = s_ssb + noise;
figure;
subplot(3,1,1); plot(t,s_ssb,'b-');
hold on; plot(t,mt,'r:');
xlabel('t (s)'); grid on;
title('S
边栏推荐
猜你喜欢
每日刷题记录 (十二)
Fault analysis | mongodb 5.0 reports an error, and the legal instruction solves it
6-4 vulnerability exploitation SSH banner information acquisition
Drozer tool
Annexe VI: exposé sur les travaux de défense. Docx
Developing mqtt access program under QT
MySQL indexes and transactions
Use units of measure in your code for a better life
附件六:防守工作簡報.docx
appliedzkp zkevm(13)中的Public Inputs
随机推荐
【MATLAB】MATLAB 仿真 — 窄带高斯白噪声
【Go】数据库框架gorm
qt下开发mqtt的访问程序
网络设备应急响应指南
Annex 4: scoring criteria of the attacker docx
MAUI 入门教程系列(5.XAML及页面介绍)
How to build your own knowledge engine? Community open application
laravel 中获取刚刚插入的记录的id
Maui introductory tutorial series (5.xaml and page introduction)
中科磐云—数据分析与取证数据包flag
Utiliser des unités de mesure dans votre code pour une vie meilleure
Annexe VI: exposé sur les travaux de défense. Docx
PaddleHub人脸识别方案部署,将训练好的模型在pytchrom中进行部署应用
TCP状态转换图
A summary of the 8544 problem that SolidWorks Standard cannot obtain a license
【MATLAB】通信信号调制通用函数 — 插值函数
Test cs4344 stereo DA converter
Annex V: briefing on the attack process docx
Change the background color of Kivy tutorial (tutorial includes source code)
YoloV6实战:手把手教你使用Yolov6进行物体检测(附数据集)