当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python dask.array.moveaxis用法及代码示例


用法:

dask.array.moveaxis(a, source, destination)

将数组的轴移动到新位置。

此文档字符串是从 numpy.moveaxis 复制的。

可能存在与 Dask 版本的一些不一致之处。

其他轴保持原来的顺序。

参数

anp.ndarray

轴应重新排序的数组。

sourceint 或 int 序列

要移动的轴的原始位置。这些必须是唯一的。

destinationint 或 int 序列

每个原始轴的目标位置。这些也必须是唯一的。

返回

resultnp.ndarray

带有移动轴的数组。该数组是输入数组的视图。

例子

>>> x = np.zeros((3, 4, 5))  
>>> np.moveaxis(x, 0, -1).shape  
(4, 5, 3)
>>> np.moveaxis(x, -1, 0).shape  
(5, 3, 4)

这些都达到了相同的结果:

>>> np.transpose(x).shape  
(5, 4, 3)
>>> np.swapaxes(x, 0, -1).shape  
(5, 4, 3)
>>> np.moveaxis(x, [0, 1], [-1, -2]).shape  
(5, 4, 3)
>>> np.moveaxis(x, [0, 1, 2], [-1, -2, -3]).shape  
(5, 4, 3)

相关用法


注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 dask.array.moveaxis。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。