Python numpy.reciprocal()
numpy.reciprocal()是一个数学函数,用于计算输入数组中所有元素的倒数。
语法 : numpy.reciprocal(x, /, out=None, *, where=True)
参数 :
x[array_like] : 输入数组或对象,其元素需要进行测试。
out[ndarray, optional] : 一个储存结果的位置。
-> 如果提供,它必须有一个输入广播到的形状。
-> 如果没有提供或没有,将返回一个新分配的数组。
**kwargs :允许向一个函数传递长度可变的关键字参数。当我们想在一个函数中处理命名参数时使用。
其中[array_like, optional]。真值意味着在该位置计算通用函数(ufunc),假值意味着不考虑输出中的值。
返回 :
y :ndarray。如果x是一个标量,这就是一个标量。
注意:对于绝对值大于1的整数参数,由于Python处理整数除法的方式,结果总是零。对于整数0,其结果是溢出。
代码 #1 :
# Python3 code demonstrate reciprocal() function
# importing numpy
import numpy as np
in_num = 2.0
print ("Input number : ", in_num)
out_num = np.reciprocal(in_num)
print ("Output number : ", out_num)
输出 :
Input number : 2.0
Output number : 0.5
代码 #2 :
# Python3 code demonstrate reciprocal() function
# importing numpy
import numpy as np
in_arr = [2., 3., 8.]
print ("Input array : ", in_arr)
out_arr = np.reciprocal(in_arr)
print ("Output array : ", out_arr)
输出 :
Input array : [2.0, 3.0, 8.0]
Output array : [ 0.5 0.33333333 0.125 ]
代码 #3 :在reciprocal()函数中出现异常。结果总是为零。
# Python3 code demonstrate Exception in reciprocal() function
# importing numpy
import numpy as np
in_arr = [2, 3, 8]
print ("Input array : ", in_arr)
out_arr = np.reciprocal(in_arr)
print ("Output array : ", out_arr)
输出 :
Input array : [2, 3, 8]
Output array : [0 0 0]