首页 技术 正文
技术 2022年11月8日
0 收藏 700 点赞 1,191 浏览 1228 个字

《DSP using MATLAB》Problem 5.32

《DSP using MATLAB》Problem 5.32

代码:

function [y] = ovrlpadd_v3(x, h, N)
%% Overlap-Add method of block convolution
%% ------------------------------------------------------
%% [y] = ovrlpadd(x, h, N)
%% y = output sequence
%% x = input sequence
%% h = impulse response
%% N = block length >= 2*length(h)-1N = 2^(ceil(log10(N)/log10(2))) Lx = length(x); % ML
L = length(h); % length of impulse responseHk_FFT = fft(h, N);M = floor((Lx)/(L)) % number of bolck
Y = zeros(1, Lx+N-L)% convolution with successive blocks
for m = 0:M-1
xm = x(m*L+1 : m*L+L); % length is L
XMk_FFT = fft(xm, N);
YMk_FFT = XMk_FFT .* Hk_FFT;
ym = real(ifft(YMk_FFT)) % length is 2L-1
%Y(m*L+1 : m*L+(2*L-1)) = Y(m*L+1 : m*L+(2*L-1)) + ym
Y(m*L+1 : m*L+N) = Y(m*L+1 : m*L+N) + ym
endy = Y;

  

%% ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
%% Output Info about this m-file
fprintf('\n***********************************************************\n');
fprintf(' <DSP using MATLAB> Problem 5.32 \n\n');banner();
%% ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++% -------------------------------------------------------------
% Overlap-Add
% -------------------------------------------------------------n1 = [0:8-1];
x1 = cos(pi*n1/500);
N1 = length(x1);nh = [0:3];
h = [1, -1, 1, -1];
L = length(h);M = N1/L;N = 2*L-1; y = ovrlpadd_v3(x1, h, N); % FFT

  运行结果:

原题中x(n)长4000,不好看图说明,这里假设长度只有8,便于上图说明道理。

《DSP using MATLAB》Problem 5.32

《DSP using MATLAB》Problem 5.32

《DSP using MATLAB》Problem 5.32

《DSP using MATLAB》Problem 5.32

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,085
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,560
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,409
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,182
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,819
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,902