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


Python numpy.reciprocal()用法及代码示例


numpy.reciprocal(x,/,out = None,*,where = True):此数学函数用于计算输入数组中所有元素的倒数。

Parameters:

x [数组]:需要测试其元素的输入数组或对象。


out [ndarray,可选]:结果存储的位置。
->如果提供,则必须具有广播输入的形状。 ->如果未提供或没有,则返回新分配的数组。

** kwargs:允许将关键字变量的参数长度传递给函数。当我们要处理函数中的命名参数时使用。

where [数组,可选]:真值表示在该位置计算通用函数(ufunc),假值表示将值保留在输出中。

Return:
y:ndarray。如果x是标量,则这是标量。

注意:对于绝对值大于1的整数参数,由于Python处理整数除法的方式,结果始终为零。对于整数零,结果为溢出。

代码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]



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