Hanning Window 10%
古いコメントを表示
Dear all,
I am trying to reproduce a previously described analysis and I struggle with one part of it: It says
"data epochs were subjected to a Hanning window (10%)"
While I know that I can create a Hanning window of the desired length via hann(), I am not sure what I should do about the 10%. Do you have an idea?
Thank you very much!
Best
5 件のコメント
Bjorn Gustavsson
2022 年 1 月 14 日
編集済み: Bjorn Gustavsson
2022 年 1 月 14 日
Do they mean that the window-length is 10% of the epochs? (That ought to be "very peculiar" if the different epochs are of different lengths, but if they are of constant size then maybe - so you could check for that.)
Katharina Paul
2022 年 1 月 14 日
Bjorn Gustavsson
2022 年 1 月 14 日
Well, I guess that they apply a Hanning-window with a length corresponding to 10% of the length of the epocs. That would be a low-pass-filter with a rather wide pass-band. Does the plots of the data they use look like it might be low-pass-filtered this might be it. But since I don't know anything more than epochs, Hanning and 10% it is difficult to do more than guess...
Srija Kethiri
2022 年 2 月 17 日
Hii Katharina,
Can you please share your script files so that we can help you better.
David Goodmanson
2022 年 2 月 17 日
編集済み: David Goodmanson
2022 年 2 月 17 日
Hi Katharina,
could you explain what the task is, such as power spectral density, or something else? If it is PSD or something like it, then the general approach is to use the same window in overlapping intervals across the data. Suppose the data has 10000 points and suppose the window length is 10% of rhe data length (just a guess, a la Bjorn). If the window overlap was 50% which is fairly common, then you would multiply the window.*data(1:1000), then window.* data(501:1500), then window.*data(1001:2000) etc. Then you would separately fourier transform each of those 19 cases and take an average of, in the case of PSD, abs(fourier trans).^2 (I am skipping some details involving normalization). That's just one possibility for what might be meant.
回答 (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!