Python cmath.isclose() function (original) (raw)

Last Updated : 28 May, 2020

cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.isclose() function is used to check whether two complex values are close, or not. The value passed in this function can be int, float, and complex numbers.

Syntax: cmath.isclose(a, b, rel_tol = value, abs_tol = value)

**Parameter:**This method accepts the following parameters.

**Returns:**This method returns a Boolean value.

Below examples illustrate the use of above function:

Example #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)

`

Output:

True False

Example 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)

`