Content deleted Content added
Line 90:
In [[Python (programming language)|Python]], particularly in [[NumPy]], an ellipsis is used for slicing an arbitrary number of dimensions for a high-dimensional array:<ref>http://docs.scipy.org/doc/numpy/reference/arrays.indexing.html</ref>
<syntaxhighlight lang="
>>> import numpy as np
>>> t = np.random.rand(2, 3, 4, 5)
|