当前位置:网站首页>[matlab] matlab simulation modulation system - VSB system
[matlab] matlab simulation modulation system - VSB system
2022-07-04 05:00:00 【Embedded workplace】
Catalog
1、VSB System
close all;
clear all;
clc;
fm = 5; % The highest frequency of baseband signal
fc = 20; % Carrier center frequency
dt = 0.001; % Time sampling interval
T = 5; % Signal duration
t = 0:dt:T;
mt = sqrt(2)*( cos(2*pi*fm*t) + sin(2*pi*0.1*fm*t) );
%VSB modulation
s_vsb = mt.*cos(2*pi*fc*t);
[f,sf] = T2F(t,s_vsb);
[t,s_vsb] = vsbpf(f,sf,0.2*fm,fm,fc);
figure;
subplot(3,1,1); plot(t,s_vsb,'b-');
hold on; plot(t,mt,'r:');
title('VSB Modulated signal ');
xlabel('t (s)'); grid on;
% VSB Power spectrum of modulated signal
[f,sf] = T2F(t,s_vs边栏推荐
- Customize a pager needed in your project
- qt下开发mqtt的访问程序
- 关于solidworks standard无法获得许可 8544问题的总结
- LeetCode136+128+152+148
- When using flash to store parameters, the code area of flash is erased, which leads to the interrupt of entering hardware error
- 附件二:攻防演练保密协议.docx
- TCP状态转换图
- 记几个智能手表相关芯片 蓝牙芯片 低功耗
- Solve the problem of failed to load property source from location 'classpathapplication YML 'problem
- Correct the classpath of your application so that it contains a single, compatible version of com.go
猜你喜欢

Correct the classpath of your application so that it contains a single, compatible version of com. go

Yolov6 practice: teach you to use yolov6 for object detection (with data set)

全国职业院校技能大赛(中职组)网络安全竞赛试题—解析

6-5 vulnerability exploitation SSH weak password cracking and utilization

测试 CS4344 立体声DA转换器

中職組網絡安全—內存取證

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

《Cross-view Transformers for real-time Map-view Semantic Segmentation》论文笔记

在代码中使用度量单位,从而生活更美好

A summary of the 8544 problem that SolidWorks Standard cannot obtain a license
随机推荐
6-4 vulnerability exploitation SSH banner information acquisition
中科磐云—模块A 基础设施设置与安全加固 评分标准
Talking about JVM
如何构建属于自己的知识引擎?社群开放申请
Annex VI: defense work briefing docx
我们认为消费互联网发展到最后,依然会局限于互联网行业本身
How to build your own knowledge engine? Community open application
Headache delayed double deletion
CRS-4013: This command is not supported in a single-node configuration.
关于solidworks standard无法获得许可 8544问题的总结
附件六:防守工作简报.docx
【MATLAB】通信信号调制通用函数 — 低通滤波器
Useful plug-ins for vscode
红队视角下的防御体系突破之第一篇介绍、阶段、方法
6-4漏洞利用-SSH Banner信息获取
Solve the problem of failed to load property source from location 'classpathapplication YML 'problem
20000 words will take you to master multithreading
Zhengzhou zhengqingyuan Culture Communication Co., Ltd.: seven marketing skills for small enterprises
红队视角下的防御体系突破之第二篇案例分析
【MATLAB】通信信号调制通用函数 — 带通滤波器