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


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


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

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

范例1:


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

输出:

[1]

范例2:

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

输出:

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



相关用法


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