📜  Python| numpy ndarray.__abs__()

📅  最后修改于: 2022-05-13 01:55:22.518000             🧑  作者: Mango

Python| numpy ndarray.__abs__()

Numpy ndarray.__abs__()的帮助下,可以找到数组中每个元素的绝对值。假设我们有一个值1.34 ,在ndarray.__abs__()的帮助下,它将转换为1

示例 #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]]