numpy.ravel_multi_index()函數將邊界數組的元組轉換為平麵索引數組,並將邊界模式應用於multi-index。
用法: numpy.ravel_multi_index(multi_index, dims, mode = ‘raise’, order = ‘C)
參數:
multi_index :[tuple of array_like] A tuple of integer arrays, one array for each dimension.
dims :[tuple of ints] The shape of array into which the indices from multi_index apply.
mode :[{‘raise’, ‘wrap’, ‘clip’}, optional] Specifies how out-of-bounds indices are handled. Can specify either one mode or a tuple of modes, one mode per index.
‘raise’ - raise an error (default)
‘wrap’ - wrap around
‘clip’ - clip to the range
In ‘clip’ mode, a negative index that would normally wrap will clip to 0 instead.
order :[{‘C’, ‘F’}, optional] Determines whether the multi-index should be viewed as indexing in row-major (C-style) or column-major (Fortran-style) order.
返回:[ndarray]索引數組,這些維度數組是維數組的扁平化版本。
代碼1:
# Python program explaining
# numpy.ravel_multi_index() function
# importing numpy as geek
import numpy as geek
arr = geek.array([[3, 6, 6], [4, 5, 1]])
gfg = geek.ravel_multi_index(arr, (7, 6))
print(gfg)
輸出:
[22 41 37]
代碼2:
# Python program explaining
# numpy.ravel_multi_index() function
# importing numpy as geek
import numpy as geek
arr = geek.array([[3, 6, 6], [4, 5, 1]])
gfg = geek.ravel_multi_index(arr, (7, 6), order = 'F')
print(gfg)
輸出:
[31 41 13]
代碼3:
# Python program explaining
# numpy.ravel_multi_index() function
# importing numpy as geek
import numpy as geek
arr = geek.array([[3, 6, 6], [4, 5, 1]])
gfg = geek.ravel_multi_index(arr, (7, 6), mode = 'clip')
print(gfg)
輸出:
[22 41 37]
相關用法
- Python Wand function()用法及代碼示例
- Python map()用法及代碼示例
- Python hex()用法及代碼示例
- Python dir()用法及代碼示例
- Python sum()用法及代碼示例
- Python ord()用法及代碼示例
- Python id()用法及代碼示例
- Python now()用法及代碼示例
- Python cmp()用法及代碼示例
- Python int()用法及代碼示例
- Python tell()用法及代碼示例
- Python str()用法及代碼示例
- Python oct()用法及代碼示例
- Python property()用法及代碼示例
- Python Wand fx()用法及代碼示例
- Python math.cos()用法及代碼示例
注:本文由純淨天空篩選整理自sanjoy_62大神的英文原創作品 numpy.ravel_multi_index() function | Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。