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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。