numpy.fabs()函数用于逐元素计算绝对值。此函数以arr返回数据的绝对值(正值)。它总是以浮点数返回绝对值。
用法: numpy.fabs(arr, /, out=None, *, where=True, casting=’same_kind’, order=’K’, dtype=None, ufunc ‘fabs’)
参数:
arr :[数组]需要绝对值的数字数组。
out :[ndarray,可选]将结果存储到的位置。如果提供,它必须具有输入广播到的形状。如果未提供或没有,则返回一个新分配的数组。
**kwargs:允许将关键字可变长度的参数传递给函数。当我们要处理函数中的命名参数时使用它。
where :[数组,可选]真值表示在该位置计算通用函数(ufunc),假值表示将值保留在输出中。
Return :[ndarray或标量] arr的绝对值,返回值始终是浮点数。
代码1:工作
# Python program explaining
# fabs() function
import numpy as geek
in_num = 10
print ("Input number:", in_num)
out_num = geek.fabs(in_num)
print ("Absolute value of positive input number:", out_num)
输出:
Input number: 10 Absolute value of positive input number: 10.0
代码2:
# Python program explaining
# fabs() function
import numpy as geek
in_num = -9.0
print ("Input number:", in_num)
out_num = geek.fabs(in_num)
print ("Absolute value of negative input number:", out_num)
输出:
Input number: -9.0 Absolute value of negative input number: 9.0
代码3:
# Python program explaining
# fabs() function
import numpy as geek
in_arr = [2, 0, -2, -5]
print ("Input array:", in_arr)
out_arr = geek.fabs(in_arr)
print ("Output absolute array:", out_arr)
输出:
Input array: [2, 0, -2, -5] Output absolute array: [ 2. 0. 2. 5.]
相关用法
注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 numpy.fabs() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。