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


Python Numpy np.polyone()用法及代码示例


np.polyone()方法可以代替np.ones用于创建元素为1的数组。

用法: np.polyone()
返回:Return array([1])

范例1:


    
# Python program explaining 
# numpy.polyone() method  
  
# import numpy and polyone 
import numpy as np 
from numpy.polynomial.polynomial import polyone 
  
# using np.polyone() method 
ans = polyone 
  
print(ans)

输出:

[1]

范例2:

# Python program explaining 
# numpy.polyone() method  
  
# import numpy and polyone 
import numpy as np 
from numpy.polynomial.polynomial import polyone 
  
# using np.polyone() method 
ans = polyone + [[1, 3, 5], [2, 4, 6]] 
  
print(ans)

输出:

[[2 4 6]
[3 5 7]]



相关用法


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