Filter löschen
Filter löschen

Time vector returned by spectrogram

2 Ansichten (letzte 30 Tage)
Warren Koontz
Warren Koontz am 27 Sep. 2015
Beantwortet: Greg Dionne am 23 Okt. 2015
I have tried using as follows:
[s,f,t] = spectrogram(x,window,noverlap,fs);
The values returned in t seem to have no relation to real time (in seconds), sample count or anything that I can imagine. My workaround is to replace t with a linear scale of the same length ranging from 0 to length(x)/fs. Can someone explain the way spectrogram determines t?

Antworten (1)

Greg Dionne
Greg Dionne am 23 Okt. 2015
The time instants are roughly those in the center of each window used for the spectrum. The time between estimates is the difference between the length of the window and the overlap.
For example if you have N samples and a window of length L with an overlap of K, then the estimated time for the first window of L samples is (L/2)/Fs, the next is (L/2+(L-K))/Fs, the next is (L/2+2*(L-K))/Fs, etc., up to the last possible window of samples.

Kategorien

Mehr zu Time-Frequency Analysis finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by