当前位置:网站首页>【MATLAB】通信信号调制通用函数 — 低通滤波器
【MATLAB】通信信号调制通用函数 — 低通滤波器
2022-07-04 03:55:00 【嵌入式职场】
目录
低通滤波器
function [t,st] = lpf(f,sf,B)
%This function filter an input data using a lowpass filter at frequency domain
%Inputs:
% f: frequency samples
% sf: input data spectrum samples
% B: lowpass's bandwidth with a rectangle lowpass
%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(B/df): floor(B/df)] + floor(length(f)/2);
hf(bf) = 1;
yf = hf.*sf;
[t,st] = F2T(f,yf);
st = real(st);
边栏推荐
- Annex VI: defense work briefing docx
- Unity中RampTex介绍和应用: 溶解特效优化
- What should a novice pay attention to when looking for an escort
- Zhengzhou zhengqingyuan Culture Communication Co., Ltd.: seven marketing skills for small enterprises
- Talking about what a high-quality little red book copy needs to have
- First knowledge of batch processing
- Kivy教程之 更改背景颜色(教程含源码)
- Redis: operation command for collecting set type data
- Pytest basic self-study series (I)
- Operate the server remotely more gracefully: the practice of paramiko Library
猜你喜欢
Longest increasing subsequence problem (do you really know it)
FT2000+下LPC中断绑核使用说明
Many founders of technology companies provided enterpriser first with a round C financing of up to US $158million to help it invest in the next generation of global innovators
深入解析结构化异常处理(SEH) - by Matt Pietrek
Dp83848+ network cable hot plug
Redis: operation command for collecting set type data
多位科技公司创始人向Entrepreneur First提供高达1.58亿美元的C轮融资,协助其投资下一代全球创新者
Sample template of software design document - learning / practice
Rhcsa 04 - process management
Main applications of TDK lambda power supply
随机推荐
Acwing game 58
qt下开发mqtt的访问程序
附件六:防守工作简报.docx
两万字带你掌握多线程
MIN_RTO 对话
How to view installed r packages in R language
Utiliser des unités de mesure dans votre code pour une vie meilleure
MIN_ RTO dialog
Graduation project
GUI 应用:socket 网络聊天室
博朗与Virgil Abloh于2021年为纪念博朗品牌100周年而联合打造的“功能性艺术”将在博物馆展出Abloh作品期间首次亮相
Technology Management - learning / practice
Binary search tree
Redis: order collection Zset type data operation command
优秀的测试/开发程序员是怎么修炼的?该往哪走......
多位科技公司创始人向Entrepreneur First提供高达1.58亿美元的C轮融资,协助其投资下一代全球创新者
Wechat official account infinite callback authorization system source code
【安全攻防】序列化与反序列,你了解多少?
RPC - grpc simple demo - learn / practice
牛客小白月赛49