필터 지우기
필터 지우기

How do I take the fft of a signal after I using the blackman window?

조회 수: 17 (최근 30일)
I have written the following code for putting the blackman window on the data :
window = blackman(length(strain_seg)); %the length of the strain_seg is 256^2
windowed_strain = strain_seg*window;
How do I perform an fft of the windowed strain? Do I need to use the rfft function?
  댓글 수: 1
SCuri
SCuri 2019년 3월 7일
Updated code:
M = length(strain_seg);%this length is 65536 x1
w = blackman(M);% length 64 x 1
C = [strain_seg,zeroes(65536,63)]; % added zeroes to the strain data to match the dimension of the window to I could multiply
xw = C.*w;
X = fft(xw)
How do I plot this signal as Strain vs Frequency ?

댓글을 달려면 로그인하십시오.

채택된 답변

Enthusiastic Student
Enthusiastic Student 2019년 3월 8일
I think you might have issue with dimensions early on.
Have you tried to see what
size(strain_seg)
length(strain_seg)
actually output? I'm guessing the strain_seg has a size of [65536 1] and the blackman has a size of [1 64], which is why you have to add zeroes. I would suggest transposing one of them using the ' operator:
M = length(strain_seg);
w = blackman(M);
xw = C.*w';
X = fft(xw)
With regards to plotting the fft of the windowed strain segment you would need to know the time the segment spans. Lets say the segment you are examining was taken over 10 ms:
Ts = 10e-3; %samples taken in a 10 ms long period of time /[s]
dt = 1/Ts; %/[Hz]
freq = dt:dt:(dt*length(xw)+dt); %Frequencies
figure
loglog(freq,abs(X));
xlabel('Frequency /[Hz]')
ylabel('Magnitude of FFT')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Blackman에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by