Python中的 numpy.fabs()
numpy.fabs()
函数用于逐元素计算绝对值。此函数返回 arr 中数据的绝对值(正值)。它总是以浮点数返回绝对值。
Syntax : numpy.fabs(arr, /, out=None, *, where=True, casting=’same_kind’, order=’K’, dtype=None, ufunc ‘fabs’)
Parameters :
arr : [array_like] The array of numbers for which the absolute values are required.
out : [ndarray, optional] A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned.
**kwargs : Allows to pass keyword variable length of argument to a function. It is used when we want to handle named argument in a function.
where : [array_like, optional] True value means to calculate the universal functions(ufunc) at that position, False value means to leave the value in the output alone.
Return : [ndarray or scalar] The absolute values of arr, the returned values are always floats.
代码#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.]