import matplotlib.pyplot as plt
numargs = reciprocal.numargs
[ a, b ] = [0.9,] * numargs
rv = reciprocal(a, b)

# Display frozen pdf

x = np.linspace(0, np.minimum(rv.dist.b, 3))
h = plt.plot(x, rv.pdf(x))

# Check accuracy of cdf and ppf

prb = reciprocal.cdf(x, a, b)
h = plt.semilogy(np.abs(x - reciprocal.ppf(prb, a, b)) + 1e-20)

# Random number generation

R = reciprocal.rvs(a, b, size=100)
