bundles / numpy latest / numpy / dsplit
_ArrayFunctionDispatcher
numpy:dsplit
source: /dev/numpy/build-install/usr/lib/python3.14/site-packages/numpy/lib/_shape_base_impl.py :1006
Signature
def dsplit ( ary , indices_or_sections ) Summary
Split array into multiple sub-arrays along the 3rd axis (depth).
Extended Summary
Please refer to the split documentation. dsplit is equivalent to split with axis=2, the array is always split along the third axis provided the array dimension is greater than or equal to 3.
Examples
import numpy as np x = np.arange(16.0).reshape(2, 2, 4)✓
x np.dsplit(x, 2) np.dsplit(x, np.array([3, 6]))✗
See also
- split
Split an array into multiple sub-arrays of equal size.
Aliases
-
numpy.dsplit