bundles / numpy 2.4.4 / numpy / unravel_index
_ArrayFunctionDispatcher
numpy:unravel_index
Signature
def unravel_index ( indices , shape , order = C ) Summary
Converts a flat index or array of flat indices into a tuple of coordinate arrays.
Parameters
indices: array_likeAn integer array whose elements are indices into the flattened version of an array of dimensions
shape. Before version 1.6.0, this function accepted just one index value.shape: tuple of intsThe shape of the array to use for unraveling
indices.order: {'C', 'F'}, optionalDetermines whether the indices should be viewed as indexing in row-major (C-style) or column-major (Fortran-style) order.
Returns
unraveled_coords: tuple of ndarrayEach array in the tuple has the same shape as the
indicesarray.
Examples
import numpy as np np.unravel_index([22, 41, 37], (7,6)) np.unravel_index([31, 41, 13], (7,6), order='F')✓
np.unravel_index(1621, (6,7,8,9))
✗See also
- ravel_multi_index
Aliases
-
numpy.unravel_index