What is the relation between the s output and the plot made by the spectrogram function?
이전 댓글 표시
I'm making a spectrogram, and wish to extract the mean power (dB) in various frequency ranges (e.g. mean power between 8-14Hz at each time point). From what I understand, the output s is a matrix of complex numbers, the real part of which is magnitude squared. Taking the square root of that, then using the mag2db function to convert to dB results in a plot which looks right, however, the units are way off. The spectrogram yields units ranging from -70 to 10 dB, while my plot ranges from 25 to 50 dB.
I'd like the two plots to be directly comparable, so any insight into how Matlab computes the spectrogram from the values of s would be helpful. Alternatively, if anyone knows a way to extract the values in the spectrogram directly, that would also be good.
댓글 수: 4
Adam
2016년 7월 22일
I tend to use the 4 output version of spectrogram and throw away the 's' output. The 4th output being the power spectrum which, if I remember correctly, is what is plotted when you use the no output argument version, albeit with some different scaling possibly.
I don't really have time to check any further now, I am just glancing at the code where I use spectrogram and my call starts as:
[~,freqs,~,p] = spectrogram( ...
Jostein Holmgren
2016년 7월 22일
Adam
2016년 7월 22일
I just take 10 log10( p ) and plot that but I'm not sure about dB specifically as I don't generally work in dB.
Jostein Holmgren
2016년 7월 22일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Spectral Estimation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!