How to verify the discrete-time convolution theorem with Matlab
13 次查看(过去 30 天)
显示 更早的评论
My idea is to first get the time-domain convolution result of the output signal y1, and then perform fft on it to get the y1_f spectrum. Then I get the spectrum x1_f of the input signal and the frequency response h1_f, the product of the two should be equal to y1_f. But the results I get are very unsatisfactory.The picture is as follows:
0 个评论
回答(2 个)
Harsh Kumar
2023-6-4
编辑:Harsh Kumar
2023-6-8
Hi moyu,
As per my understanding ,you are using two different methods to determine the Fast Fourier Transform of a function but it does not gave the same results .
The potential cause of the mismatch of above results is the missing "scaling" factor when you are calculating x1_f from h1_f x y1_f. In FT the multiplication property states that ,
FT (x(t)∗y(t)) ⟷ (1/2π) X(ω).Y(ω)
Here 1/2π is the scaling factor which is 1/N in case of DTFT/fft .
So,
The correct equation may be rewritten as :
x1_f= 1/N* h1_f * y1_f where * is simple multiplication not convolution operator.
Paul
2023-6-4
Hi moyu,
Linear convolution in the frequency domain using fft requires zero padding the sequences before taking the FFTs and multiplying. If the sequences are each of length N, the FFTs should be zero padded to at least 2*N-1. Here's an example.
N = 10;
rng(100)
x1 = rand(1,N);
h1 = rand(1,N);
y1 = conv(x1,h1);
x1fft = fft(x1,2*N-1);
h1fft = fft(h1,2*N-1);
y1f = ifft(x1fft.*h1fft);
% verify that y1 and y1f are "the same"
max(abs(y1-y1f))
3 个评论
Paul
2023-6-5
The factor of 2/N was incorrect as well. As you can see in the correct code, linear convolution is achieved by zero padding the FFTs to an appropriate length AND not using any scale factors on the FFTs, as computed by Matlab's implementation of fft.
"I want to get the true spectrum of the signal, "
Not sure what "true spectrum" means in this context, nor which signal is being referenced. In any event, I thought the question was about convolution. Is the desire to get the true spectrum a new part of the problem?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!