You are reading an old version of the documentation (v2.2.4). For the latest version see https://matplotlib.org/stable/
Version 2.2.4
matplotlib
Fork me on GitHub

Related Topics

ArctestΒΆ

../../_images/sphx_glr_arctest_001.png
import matplotlib.pyplot as plt
import numpy as np


def f(t):
    'A damped exponential'
    s1 = np.cos(2 * np.pi * t)
    e1 = np.exp(-t)
    return s1 * e1


t1 = np.arange(0.0, 5.0, .2)

l = plt.plot(t1, f(t1), 'ro')
plt.setp(l, markersize=30)
plt.setp(l, markerfacecolor='C0')

plt.show()

Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery