How to normalized power from spectrogram
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Wendy Fernandez
il 15 Giu 2017
Risposto: Vishal Neelagiri
il 22 Giu 2017
I am using
spectrogram(singal,[],[],[],Fs,'yaxis');colorbar;
command and I would like to normalize the power values obtained in the colorbar. However, I have not seen any way in the documentation to do it. Any suggestions?
0 Commenti
Risposta accettata
Vishal Neelagiri
il 22 Giu 2017
There doesn't seem to be a direct way to normalize the output of the Spectrogram figure. However, you can workaround this by using [~,ps] = spectrogram(singal,[],[],[],Fs,'yaxis'); to extract out the power density values to MATLAB and then normalize the values manually depending on your use-case.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Time-Frequency Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!