What is the relation between the s output and the plot made by the spectrogram function?
Afficher commentaires plus anciens
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 commentaires
Adam
le 22 Juil 2016
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
le 22 Juil 2016
Adam
le 22 Juil 2016
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
le 22 Juil 2016
Réponses (0)
Catégories
En savoir plus sur Parametric Spectral Estimation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!