Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > bf21b4394f4d7fa09e3626145d3315e0 > files > 405

python-matplotlib-doc-1.2.0-14.fc18.i686.rpm

.. _pylab_examples-invert_axes:

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



.. plot:: /builddir/build/BUILD/matplotlib-1.2.0/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`)