Converts a flat index or array of flat indices into a tuple of coordinate arrays.
An 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.
The shape of the array to use for unraveling indices
.
Determines whether the indices should be viewed as indexing in row-major (C-style) or column-major (Fortran-style) order.
Each array in the tuple has the same shape as the indices
array.
Examples
>>> import numpy as np >>> np.unravel_index([22, 41, 37], (7,6)) (array([3, 6, 6]), array([4, 5, 1])) >>> np.unravel_index([31, 41, 13], (7,6), order='F') (array([3, 6, 6]), array([4, 5, 1]))
>>> np.unravel_index(1621, (6,7,8,9)) (3, 1, 4, 1)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4