当前位置:网站首页>[matlab] communication signal modulation general function - low pass filter
[matlab] communication signal modulation general function - low pass filter
2022-07-04 05:00:00 【Embedded workplace】
Catalog
low pass filter
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);
边栏推荐
- Binary search tree
- 【MATLAB】通信信号调制通用函数 — 插值函数
- 分享一些我的远程办公经验
- 2022 Guangdong provincial competition - code information acquisition and analysis flag
- The first introduction, stages and methods of defense system breakthrough from the perspective of the red team
- Headache delayed double deletion
- 软件设计文档示例模板 - 学习/实践
- We believe that the development of consumer Internet will still be limited to the Internet industry itself
- CRS-4013: This command is not supported in a single-node configuration.
- 关于solidworks standard无法获得许可 8544问题的总结
猜你喜欢

技术管理 - 学习/实践

appliedzkp zkevm(13)中的Public Inputs

Deep understanding of redis -- bloomfilter

Beipiao programmer, 20K monthly salary, 15W a year, normal?

Talking about JVM

Change the background color of Kivy tutorial (tutorial includes source code)

Public inputs in appliedzkp zkevm (13)

Annexe VI: exposé sur les travaux de défense. Docx

2022广东省赛——编码信息获取 解析flag

NTFS security permissions
随机推荐
海力士EMMC5.0及5.1系列对比详解
[matlab] matlab simulation - low pass Gaussian white noise
【MATLAB】通信信号调制通用函数 — 插值函数
【MATLAB】MATLAB 仿真模拟调制系统 — SSB 系统
附件四:攻击方评分标准.docx
Several smart watch related chips Bluetooth chip low power consumption
Correct the classpath of your application so that it contains a single, compatible version of com.go
NTFS security permissions
附件三:防守方评分标准.docx
Fault analysis | mongodb 5.0 reports an error, and the legal instruction solves it
【MATLAB】MATLAB 仿真 — 窄带高斯白噪声
appliedzkp zkevm(13)中的Public Inputs
Operate the server remotely more gracefully: the practice of paramiko Library
中职组网络安全—内存取证
6-4 vulnerability exploitation SSH banner information acquisition
[matlab] matlab simulates digital baseband transmission system - digital baseband transmission system
cmake
自动化测试selenium基础篇——webdriverAPI
Network equipment emergency response Guide
laravel 中获取刚刚插入的记录的id