Hanning window on Imported data
古いコメントを表示
Hi everyone
I am trying to add a hanning window to my time signal before I FFT it. I am not sure exactly what do. Looking at other examples I feel like I have information missing. I selected the time portion where my front wall signal is evident as you can see in the diagram below.

I have a Time & Data vector which are 1480 x 1 arrays (for the part of the selected signal) and the inspection frequency of my transducer is 10 MHz. If anyone can point me in the right direction, would be grateful.
Thanks
FName = 'Tit_10MHz_110F.flxhst';
MyData = read_history(FName);
Time = MyData.TimeRecB.Time;
Data= MyData.DataRecB(1).Data;
Transducer_Frequency = 10e6 %10MHz
%%
%Select the front wall signal
select= find(Time>=2.4e-6 & Time<=3.6e-6);
Time= Time(select);
Data= Data(select);
1 件のコメント
Mathieu NOE
2022 年 3 月 30 日
hello
your signal start and stop with zero values
you don't even need to apply a window here - you can simply do the fft on the raw signal
a window would be needed if you had a persistent signal (non zero at both ends)
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Multirate Signal Processing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!