Effacer les filtres
Effacer les filtres

High quality spectrogram with a few seconds signal

4 vues (au cours des 30 derniers jours)
Diana
Diana le 7 Fév 2016
Commenté : Rick Rosson le 8 Fév 2016
I am trying to get a high quality spectrogram with a signal that is only 5 seconds long. This is the line I am using: the sampling frequency is 1000Hz.
spectrogram(signal,128,64,2048,fs,'yaxis')
I do not get the quality I need. Is there something I could do?

Réponses (1)

Rick Rosson
Rick Rosson le 7 Fév 2016
Modifié(e) : Rick Rosson le 8 Fév 2016
Please try the following:
% Window duration (in seconds):
dur = 0.5;
% Spectrogram settings (in samples):
winSize = round(fs*dur);
overlap = round(winSize/2);
fftSize = winSize;
% Plot the spectrogram:
spectrogram(signal,winSize,overlap,fftSize,fs,'yaxis');
Then try experimenting with the value of dur until the spectrogram provides a good balance between time resolution and frequency resolution.
  2 commentaires
Diana
Diana le 8 Fév 2016
Hello Rick,
Thank you for your answer, I tried it, but I still don't get the results I need.
Diana
Rick Rosson
Rick Rosson le 8 Fév 2016
What values did you try for dur? What are you trying to do?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Time-Frequency Analysis dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by