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


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