Wigner-Ville Distribution of a Doppler SignalΒΆ

This example shows the Wigner-Ville distribution of a Doppler signal. The signal steadily rises and falls, but there are many interference terms present in the time-friequency plane, due to the bilinearity of the signal.

Figure 4.2 from the tutorial.

../_images/sphx_glr_plot_4_1_1_doppler_wigner_ville_001.png
from tftb.generators import doppler
from tftb.processing import WignerVilleDistribution

fm, am, iflaw = doppler(256, 50.0, 13.0, 10.0, 200.0)
sig = am * fm
dist = WignerVilleDistribution(sig)
tfr, times, freqs = dist.run()
dist.plot(show_tf=True, kind="contour", scale="log")

Total running time of the script: ( 0 minutes 0.710 seconds)

Gallery generated by Sphinx-Gallery