Test tutorial Aux

This is an example of notebook

[2]:
import numpy as np
import matplotlib.pyplot as plt
[3]:
xx = np.random.rand(100)

Plot

[7]:
_ = plt.plot(range(len(xx)), xx)
../../_images/contents_tutorials_test_5_0.png
[ ]: