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


Python numpy nditer.copy用法及代码示例


本文简要介绍 python 语言中 numpy.nditer.copy 的用法。

用法:

nditer.copy()

获取当前状态下的迭代器副本。

例子

>>> x = np.arange(10)
>>> y = x + 1
>>> it = np.nditer([x, y])
>>> next(it)
(array(0), array(1))
>>> it2 = it.copy()
>>> next(it2)
(array(1), array(2))

相关用法


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