Test Example for Sphinx DocsΒΆ

We create a test plot to see if sphinx gallery works

import numpy as np
import fiducia
import matplotlib.pyplot as plt

Generating some data

dataX = np.arange(10)
dataY = dataX ** 2

Plotting the data

plt.plot(dataX, dataY)
plt.xlabel('X')
plt.ylabel('Y')
plt.title('Example data')
plt.show()
Example data

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

Gallery generated by Sphinx-Gallery