当前位置:网站首页>【MATLAB】通信信号调制通用函数 — 带通滤波器
【MATLAB】通信信号调制通用函数 — 带通滤波器
2022-07-04 03:55:00 【嵌入式职场】
目录
带通滤波器
function [t,st] = bpf(f,sf,B1,B2)
%This function filter an input at frequency domain by an ideal bandpass filter
%Inputs:
% f: frequency samples
% sf: input data spectrum samples
% B1: bandpass's lower frequency
% B2: bandpass's higher frequency
%Outputs:
% t: time samples
% st: output data's time samples
df = f(2)-f(1);
T = 1/df;
hf = zeros(1,length(f));
bf = [floor(B1/df ): floor(B2/df)] ;
bf1 = floor(length(f)/2) + bf;
bf2 = floor(length(f)/2) - bf;
hf(bf1)=1;
hf(bf2)=1;
yf = hf.*sf;
[t,st] = F2T(f,yf);
st = real(st);
边栏推荐
- [go] database framework Gorm
- 附件四:攻击方评分标准.docx
- Redis: order collection Zset type data operation command
- 自动化测试selenium基础篇——webdriverAPI
- qt下开发mqtt的访问程序
- LeetCode136+128+152+148
- Maui introductory tutorial series (5.xaml and page introduction)
- CRS-4013: This command is not supported in a single-node configuration.
- Deep understanding of redis -- bloomfilter
- 附件二:攻防演练保密协议.docx
猜你喜欢
Definition of DCDC power supply current
旭化成首次参展第五届中国国际进口博览会(5th CIIE)
DCDC电源电流定义
Flutter 调用高德地图APP实现位置搜索、路线规划、逆地理编码
qt下开发mqtt的访问程序
Graduation project
MAUI 入门教程系列(5.XAML及页面介绍)
Kivy教程之 更改背景颜色(教程含源码)
[security attack and Defense] how much do you know about serialization and deserialization?
Use units of measure in your code for a better life
随机推荐
Main applications of TDK lambda power supply
@Feignclient comments and parameters
2022年6月总结
[Yugong series] go teaching course 001 in July 2022 - Introduction to go language premise
拼夕夕二面:说说布隆过滤器与布谷鸟过滤器?应用场景?我懵了。。
【愚公系列】2022年7月 Go教学课程 002-Go语言环境安装
软件设计文档示例模板 - 学习/实践
网络设备应急响应指南
Y55. Chapter III kubernetes from entry to proficiency -- HPA controller and metrics server (28)
Application scheme of Puyuan ds1000z series digital oscilloscope in communication principle experiment
Annexe VI: exposé sur les travaux de défense. Docx
疫情远程办公经验分享| 社区征文
RPC Technology
Keysight n9320b RF spectrum analyzer solves tire pressure monitoring scheme
Kivy教程之 自定义字体(教程含源码)
What is the difference between Western Digital Green disk, blue disk, black disk, red disk and purple disk
Acwing game 58
The "functional art" jointly created by Bolang and Virgil abloh in 2021 to commemorate the 100th anniversary of Bolang brand will debut during the exhibition of abloh's works in the museum
自动化测试selenium基础篇——webdriverAPI
Utiliser des unités de mesure dans votre code pour une vie meilleure