当前位置:网站首页>[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);
边栏推荐
猜你喜欢

Notes on the paper "cross view transformers for real time map view semantic segmentation"

appliedzkp zkevm(13)中的Public Inputs

Create ASM disk through DD

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

RPC - grpc simple demo - learn / practice

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

Zhongke panyun-2022 Guangdong Trojan horse information acquisition and analysis

MySQL JDBC programming

【QT】定时器

2022 Guangdong provincial competition - code information acquisition and analysis flag
随机推荐
[matlab] matlab simulation - narrow band Gaussian white noise
Exercise bubble sort
Talking about JVM
【MATLAB】MATLAB 仿真模拟调制系统 — AM 已调信号的功率谱与相干解调
Error response from daemon: You cannot remove a running container 8d6f0d2850250627cd6c2acb2497002fc3
Download kicad on Alibaba cloud image station
简单g++和gdb调试
Kivy tutorial 07 component and attribute binding implementation button button click to modify the label component (tutorial includes source code)
郑州正清园文化传播有限公司:针对小企业的7种营销技巧
Change the background color of Kivy tutorial (tutorial includes source code)
National vocational college skills competition (secondary vocational group) network security competition questions - Analysis
Zhongke Panyun - 2022 Guangxi reverse analysis ideas
Rollup各组件作用
【MATLAB】通信信号调制通用函数 — 窄带高斯白噪声的生成
【MATLAB】通信信号调制通用函数 — 傅里叶逆变换
技术管理 - 学习/实践
Headache delayed double deletion
2022 Guangdong provincial competition - code information acquisition and analysis flag
2022广东省赛——编码信息获取 解析flag
【MATLAB】MATLAB 仿真数字基带传输系统 — 数字基带传输系统