Python| Numpy np.legone() 方法
可以使用np.legone()
方法代替np.ones来创建元素为 1 的数组。
Syntax : np.legone()
Return : Return array([1])
示例 #1:
# Python program explaining
# numpy.legone() method
# import numpy and legone
import numpy as np
from numpy.polynomial.legendre import legone
# using np.legone() method
ans = legone
print(ans)
输出 :
[1]
示例 #2:
# Python program explaining
# numpy.legone() method
# import numpy and legone
import numpy as np
from numpy.polynomial.legendre import legone
# using np.legone() method
ans = legone + [[1, 3, 5], [2, 4, 6]]
print(ans)
输出 :
[[2 4 6]
[3 5 7]]