當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Numpy ndarray.__abs__()用法及代碼示例


借助Numpy ndarray.__abs__(),您可以找到數組中每個元素的絕對值。假設我們有一個值1.34,ndarray.__abs__()它將轉換成1個

用法: ndarray.__abs__(self)

返回: floor (self)


範例1:
在此示例中,我們可以看到ndarray.__abs__(),我們得到了一個簡單的數組,該數組可以包含數組所有元素的絕對值。

# import the important module in python 
import numpy as np 
  
# make an array with numpy 
gfg = np.array([1.45, 2.32, 3.98, 4.41, 5.55, 6.12]) 
  
# applying ndarray.____() method 
print(gfg.__abs__())
輸出:
[ 1  2  3  4  5  6]

範例2:

# import the important module in python 
import numpy as np 
  
# make an array with numpy 
gfg = np.array([[1.22, 2.25, -3.21, 4.45, 5.56, 6], 
                [-6.65, 5.55, 4.32, 3.33, 2.12, -1.05]]) 
  
# applying ndarray.__abs__() method 
print(gfg.__abs__())
輸出:
[[ 1  2  3  4  5  6 ]
 [ 6  5  4  3  2  1]]


相關用法


注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | Numpy ndarray.__abs__()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。