Consider a sinusoid, , windowed with a Gaussian window, . The short-time transform is
When viewed as a function of frequency, the transform combines a constant (in time) oscillation at with Gaussian decay away from it. The synchrosqueezing estimate of the instantaneous frequency,
equals the value obtained by using the standard definition, . For a superposition of sinusoids,
the short-time transform becomes
Create 1024 samples of a signal consisting of two sinusoids. One sinusoid has a normalized frequency of rad/sample. The other sinusoid has three times the frequency and three times the amplitude.
N = 1024; n = 0:N-1; w0 = pi/5; x = exp(1j*w0*n)+3*exp(1j*3*w0*n);
Compute the short-time Fourier transform of the signal. Use a 256-sample Gaussian window with , 255 samples of overlap between adjoining sections, and 1024 DFT points. Plot the absolute value of the transform.
Nw = 256; nfft = 1024; alpha = 20; [s,w,t] = spectrogram(x,gausswin(Nw,alpha),Nw-1,nfft,'centered'); surf(t,w/pi,abs(s),'EdgeColor','none') view(2) axis tight xlabel('Samples') ylabel('Normalized Frequency (\times\pi rad/sample)')
The Fourier synchrosqueezed transform results in a sharper, better localized estimate of the spectrum.
[ss,sw,st] = fsst(x,[],gausswin(Nw,alpha));
fsst(x,'yaxis')
The sinusoids are visible as constant oscillations at the expected frequency values. To see that the decay away from the ridges is Gaussian, plot an instantaneous value of the transform and overlay two instances of a Gaussian. Express the Gaussian amplitude and standard deviation in terms of and the window length. Recall that the standard deviation of the frequency-domain window is the reciprocal of the standard deviation of the time-domain window.
rstdev = (Nw-1)/(2*alpha); amp = rstdev*sqrt(2*pi); instransf = abs(s(:,128)); plot(w/pi,instransf) hold on plot(w/pi,[1 3]*amp.*exp(-rstdev^2/2*(w-[1 3]*w0).^2),'--') hold off xlabel('Normalized Frequency (\times\pi rad/sample)') lg = legend('Transform','First sinusoid','Second sinusoid'); lg.Location = 'best';
The Fourier synchrosqueezed transform concentrates the energy content of the signal at the estimated instantaneous frequencies.
stem(sw/pi,abs(ss(:,128))) xlabel('Normalized Frequency (\times\pi rad/sample)') title('Synchrosqueezed Transform')
The synchrosqueezed estimates of instantaneous frequency are valid only if the sinusoids are separated by more than , where
for a Gaussian window and is the standard deviation.
Repeat the previous calculation, but now specify that the second sinusoid has a normalized frequency of rad/sample.
D = sqrt(2*log(2))/rstdev; w1 = w0+1.9*D; x = exp(1j*w0*n)+3*exp(1j*w1*n); [s,w,t] = spectrogram(x,gausswin(Nw,alpha),Nw-1,nfft,'centered'); instransf = abs(s(:,20)); plot(w/pi,instransf) hold on plot(w/pi,[1 3]*amp.*exp(-rstdev^2/2*(w-[w0 w1]).^2),'--') hold off xlabel('Normalized Frequency (\times\pi rad/sample)') lg = legend('Transform','First sinusoid','Second sinusoid'); lg.Location = 'best';
The Fourier synchrosqueezed transform cannot resolve the sinusoids well because . The spectral estimates decrease significantly in value.
[ss,sw,st] = fsst(x,[],gausswin(Nw,alpha)); stem(sw/pi,abs(ss(:,128))) xlabel('Normalized Frequency (\times\pi rad/sample)') title('Synchrosqueezed Transform')
fsst
| gausswin
| ifsst
| spectrogram