An example to demonstrate how to choose which figure is displayed as the
thumbnail if the example generates more than one figure. This is done by
specifying the keyword-value pair sphinx_gallery_thumbnail_number = 2
as a
comment somewhere below the docstring in the example file.
# Code source: Andrew Heusser
# License: MIT
import hypertools as hyp
import numpy as np
w = np.cumsum(np.random.multivariate_normal(np.zeros(3), np.eye(3), size=1000),axis=0)
hyp.plot(w,animate=True)
Total running time of the script: ( 0 minutes 0.000 seconds)