Numpy 的 roll(~)
方法沿指定轴移动数组。
参数
1. a
| array_like
✜ 要执行该方法的数组。
2. shift
| integer
或 tuple
或 integers
✜ 所需的轮班数。
3. axis
| number
| optional
✜ 移动输入数组的轴。
返回值
元素按指定量移动的 Numpy 数组。
例子
滚动平面数组
要将平面数组移动 1,请使用以下命令:
np.roll([1,2,3,4], 1)
array([4, 1, 2, 3])
请注意数组的最终值(即本例中的 4)是如何放置在最前面的。
滚动二维数组
按值
要将二维数组移动 1,请使用以下命令:
np.roll([[1,2], [3,4]], 1)
array([[4, 1],
[2, 3]])
本质上,我们正在做的事情如下:
按行
要将 2D 数组按行移动 1 行,请添加 axis=0
参数:
np.roll([[1,2], [3,4], [5,6]], 1, axis=0)
array([[5, 6],
[1, 2],
[3, 4]])
本质上,我们正在做以下事情:
按栏目
要将 2D 数组按列移动 1,请添加 axis=1
参数:
np.roll([[1,2,3], [4,5,6]], 1, axis=1)
array([[3, 1, 2],
[6, 4, 5]])
本质上,我们正在做以下事情:
相关用法
- Python NumPy rot90方法用法及代码示例
- Python round()用法及代码示例
- Python NumPy roots方法用法及代码示例
- Python round方法用法及代码示例
- Python random.getstate()用法及代码示例
- Python random.triangular()用法及代码示例
- Python Numpy recarray.tostring()用法及代码示例
- Python reduce()用法及代码示例
- Python response.status_code用法及代码示例
- Python Numpy recarray.tobytes()用法及代码示例
- Python string rpartition()用法及代码示例
- Python numpy random.mtrand.RandomState.randn用法及代码示例
- Python randint()用法及代码示例
- Python numpy random.mtrand.RandomState.rand用法及代码示例
- Python Numpy recarray.min()用法及代码示例
- Python response.request用法及代码示例
- Python repr方法用法及代码示例
- Python Numpy recarray.cumprod()用法及代码示例
- Python numpy random.mtrand.RandomState.pareto用法及代码示例
- Python re.compile用法及代码示例
- Python NumPy remainder方法用法及代码示例
- Python Django re_path用法及代码示例
- Python response.elapsed用法及代码示例
- Python numpy random.mtrand.RandomState.standard_normal用法及代码示例
- Python response.cookies用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | roll method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。