当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cmath.isclose()用法及代码示例


cMath模块包含许多函数,这些函数用于对复数进行数学运算。 cmath.isclose()函数用于检查两个复数值是否接近。在此函数中传递的值可以是int,float和复数。

用法: 
cmath.isclose(a,b,rel_tol =值,abs_tol =值)

参数:此方法接受以下参数。

  • a:此参数是检查紧密度的第一个值。
  • b:此参数是检查紧密度的第二个值。
  • rel_tol =值:此参数是值a和b之间的最大允许差。
  • abs_tol =值:此参数是最小绝对公差

返回值:这个方法返回布尔值。

以下示例说明了上述函数的用法:

范例1:



Python3

# Python code to implement 
# the isclose()function 
        
# importing "cmath" 
# for mathematical operations   
import cmath  
    
# using cmath.isclose() method  
val = cmath.isclose(1 + 2j, 1 + 2j)  
print(val)  
  
val1 = cmath.isclose(1 + 2.2j, 1 + 2j)  
print(val1)

输出:

True
False

范例2:

Python3

# Python code to implement 
# the isclose()function 
        
# importing "cmath" 
# for mathematical operations   
import cmath  
    
# using cmath.isclose() method  
val = cmath.isclose(1 + 2j, 1 + 2j, abs_tol = 0.5)  
print(val)  
  
val1 = cmath.isclose(1 + 2.2j, 1 + 2j, abs_tol = 0.5)  
print(val1)

输出:

True
True



相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Python – cmath.isclose() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。