.. _pylab_examples-invert_axes:

pylab_examples example code: invert_axes.py
===========================================



.. plot:: /media/TOSHI/temp/numpy_scipy_matplotlib/matplotlib/matplotlib-1.1.1~rc2/doc/mpl_examples/pylab_examples/invert_axes.py

::

    #!/usr/bin/env python
    """
    
    You can use decreasing axes by flipping the normal order of the axis
    limits
    
    """
    from pylab import *
    
    t = arange(0.01, 5.0, 0.01)
    s = exp(-t)
    plot(t, s)
    
    xlim(5,0)  # decreasing time
    
    xlabel('decreasing time (s)')
    ylabel('voltage (mV)')
    title('Should be growing...')
    grid(True)
    
    show()
    

Keywords: python, matplotlib, pylab, example, codex (see :ref:`how-to-search-examples`)