You are reading an old version of the documentation (v1.4.2). For the latest version see https://matplotlib.org/stable/
matplotlib

Previous topic

pylab_examples example code: anscombe.py

Next topic

pylab_examples example code: arrow_demo.py

This Page

pylab_examples example code: arctest.pyΒΆ

(Source code, png, hires.png, pdf)

../../_images/arctest.png
#!/usr/bin/env python
from pylab import *

def f(t):
    'a damped exponential'
    s1 = cos(2*pi*t)
    e1 = exp(-t)
    return multiply(s1,e1)

t1 = arange(0.0, 5.0, .2)


l = plot(t1, f(t1), 'ro')
setp(l, 'markersize', 30)
setp(l, 'markerfacecolor', 'b')

show()

Keywords: python, matplotlib, pylab, example, codex (see Search examples)