Welcome to nbsphinx-rtd-test’s documentation!¶
Contents:
A Matplotlib Notebook Demo¶
In [1]:
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
In [2]:
from demo_pkg.foo import x_squared
x = np.arange(10)
plt.plot(x, x_squared(x))
Out[2]:
[<matplotlib.lines.Line2D at 0x7f3b64304310>]
