.. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_plot_2_6_monocomp_nonstat_doppler.py: ============== Doppler Signal ============== Generate a Doppler Signal. Figure 2.8 from the tutorial. .. image:: /auto_examples/images/sphx_glr_plot_2_6_monocomp_nonstat_doppler_001.png :class: sphx-glr-single-img .. code-block:: default from tftb.generators import doppler from numpy import real import matplotlib.pyplot as plt fm, am, _ = doppler(256.0, 200.0, 4000.0 / 60.0, 10.0, 50.0) signal = am * fm plt.plot(real(signal)) plt.xlabel('Time') plt.ylabel('Real part') plt.title('Doppler') plt.xlim(0, 256) plt.grid() plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.190 seconds) .. _sphx_glr_download_auto_examples_plot_2_6_monocomp_nonstat_doppler.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download :download:`Download Python source code: plot_2_6_monocomp_nonstat_doppler.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: plot_2_6_monocomp_nonstat_doppler.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_