Bandpower function produces same results for different bands
조회 수: 1 (최근 30일)
이전 댓글 표시
I'm using the bandpower function with different frequency bands. However, the results from each band are the same. The code I'm using is:
avpow = bandpower(x, fs, [0.0 0.4])
HF = bandpower(x, fs, [0.15 0.4]) %high frequency
LF = bandpower(x, fs, [0.04 0.15]) %low frequency
VLF = bandpower(x, fs, [0.0033 0.04]) %very low frequency
Any help is greatly appreciated.
댓글 수: 0
답변 (1개)
Greg Dionne
2016년 7월 12일
You might not be giving it enough data to resolve the lower frequencies. You generally will have a resolution on the order of fres = fs / length(x). Since your lowest frequency band ends at 0.04 Hz, make sure fres << 0.04 Hz.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!