Sophie

Sophie

distrib > Mandriva > 2010.2 > i586 > media > contrib-backports > by-pkgid > a44f8c7e78ee9c5838c1fb080c9e7630 > files > 1401

python-matplotlib-doc-1.1.1-1mdv2010.1.noarch.rpm

.. _pylab_examples-pstest:

pylab_examples example code: pstest.py
======================================

[`source code <pstest.py>`_]

::

    #!/usr/bin/env python
    # -*- noplot -*-
    import matplotlib
    matplotlib.use('PS')
    from pylab import *
    
    def f(t):
        s1 = cos(2*pi*t)
        e1 = exp(-t)
        return multiply(s1,e1)
    
    t1 = arange(0.0, 5.0, .1)
    t2 = arange(0.0, 5.0, 0.02)
    t3 = arange(0.0, 2.0, 0.01)
    
    figure(1)
    subplot(211)
    l = plot(t1, f(t1), 'k^')
    setp(l, markerfacecolor='k', markeredgecolor='r')
    title('A tale of 2 subplots', fontsize=14, fontname='Courier')
    ylabel('Signal 1', fontsize=12)
    subplot(212)
    l = plot(t1, f(t1), 'k>')
    
    
    ylabel('Signal 2', fontsize=12)
    xlabel('time (s)', fontsize=12)
    
    show()
    
    

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