Demo#

Stuff in here is treated as rst so this works

  • a

  • b

or

  1. x

  2. y

  3. z

Sections#

Subsections#

Subsubsections#

Paragraphs#

code that is to be run goes outside these blocks

import numpy as np
from matplotlib import pyplot as plt

More text#

Note

More text something about imports

x = np.linspace(0, 2 * np.pi, 100)
y = np.sin(x)
plt.plot(x, y)
demo
[<matplotlib.lines.Line2D object at 0x7ff1d3b97430>]

Total running time of the script: (0 minutes 0.083 seconds)

Gallery generated by Sphinx-Gallery