.. 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_linfreq_gaussamp.py: ================================================== Linear Frequency and Gaussian Amplitude Modulation ================================================== Generate a mono-component nonstationary signal with linear frequency modulation and Gaussian amplitude modulation. .. image:: /auto_examples/images/sphx_glr_plot_2_6_monocomp_nonstat_linfreq_gaussamp_001.png :class: sphx-glr-single-img .. code-block:: default from tftb.generators import fmlin, amgauss from numpy import real import matplotlib.pyplot as plt fm, _ = fmlin(256) am = amgauss(256) signal = fm * am plt.plot(real(signal)) plt.xlabel('Time') plt.ylabel('Real part') plt.title('Linear Frequency, Gaussian Amplitude') plt.xlim(0, 256) plt.grid() plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.156 seconds) .. _sphx_glr_download_auto_examples_plot_2_6_monocomp_nonstat_linfreq_gaussamp.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_linfreq_gaussamp.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: plot_2_6_monocomp_nonstat_linfreq_gaussamp.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_