📜  Python中的 numpy.fabs()

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

Python中的 numpy.fabs()

numpy.fabs()函数用于逐元素计算绝对值。此函数返回 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.]