.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "intro/scipy/summary-exercises/auto_examples/plot_optimize_lidar_data.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end <sphx_glr_download_intro_scipy_summary-exercises_auto_examples_plot_optimize_lidar_data.py>` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_intro_scipy_summary-exercises_auto_examples_plot_optimize_lidar_data.py: The lidar system, data (1 of 2 datasets) ======================================== Generate a chart of the data recorded by the lidar system .. GENERATED FROM PYTHON SOURCE LINES 7-20 .. image-sg:: /intro/scipy/summary-exercises/auto_examples/images/sphx_glr_plot_optimize_lidar_data_001.png :alt: plot optimize lidar data :srcset: /intro/scipy/summary-exercises/auto_examples/images/sphx_glr_plot_optimize_lidar_data_001.png :class: sphx-glr-single-img .. code-block:: Python import numpy as np import matplotlib.pyplot as plt waveform_1 = np.load("waveform_1.npy") t = np.arange(len(waveform_1)) fig, ax = plt.subplots(figsize=(8, 6)) plt.plot(t, waveform_1) plt.xlabel("Time [ns]") plt.ylabel("Amplitude [bins]") plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.060 seconds) .. _sphx_glr_download_intro_scipy_summary-exercises_auto_examples_plot_optimize_lidar_data.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_optimize_lidar_data.ipynb <plot_optimize_lidar_data.ipynb>` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_optimize_lidar_data.py <plot_optimize_lidar_data.py>` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: plot_optimize_lidar_data.zip <plot_optimize_lidar_data.zip>` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery <https://sphinx-gallery.github.io>`_