How to apply windowing technique in frequency Domine using Convolution Technique
1 view (last 30 days)
Show older comments
Hello
Sample Rate: 500 Hz, L = 4500(Total Block Size)
%I applied a windowing technique with following command
wd = window(@tukeywin,L,1/1.7);
New_Signal = Time_Domine_Data * wd; %(Scalar Multiplication)
Freq = fft(New_Signal);
Multiplication in time domine is convolution in frequency domine, How do I apply windowing object 'wd' in frequency Domine using Convolution Technique
-- Thanks
0 Comments
Accepted Answer
Wayne King
on 30 Mar 2013
Like this:
x = randn(8,1);
win = hamming(8);
y = x.*win;
ydft = fft(y);
Now compare ydft to the following:
N = length(x);
xdft = fft(x);
windft = fft(win);
1/N*cconv(xdft,windft,N)
4 Comments
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!