.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/plot_exp.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. 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_exp.py: Plotting the exponential function ================================= A simple example for ploting two figures of a exponential function in order to test the autonomy of the gallery stacking multiple images. .. GENERATED FROM PYTHON SOURCE LINES 10-36 .. rst-class:: sphx-glr-horizontal * .. image:: /auto_examples/images/sphx_glr_plot_exp_001.png :alt: plot exp :class: sphx-glr-multi-img * .. image:: /auto_examples/images/sphx_glr_plot_exp_002.png :alt: plot exp :class: sphx-glr-multi-img .. code-block:: default # Code source: Óscar Nájera # License: BSD 3 clause import numpy as np import matplotlib.pyplot as plt def main(): x = np.linspace(-1, 2, 100) y = np.exp(x) plt.figure() plt.plot(x, y) plt.xlabel('$x$') plt.ylabel('$\exp(x)$') plt.figure() plt.plot(x, -np.exp(-x)) plt.xlabel('$x$') plt.ylabel('$-\exp(-x)$') plt.show() if __name__ == '__main__': main() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.177 seconds) .. _sphx_glr_download_auto_examples_plot_exp.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_exp.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_exp.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_