El módulo cMath contiene una serie de funciones que se utilizan para operaciones matemáticas con números complejos. La función cmath.isinf() se usa para verificar si el valor es infinito positivo o negativo, o no. El valor pasado en esta función puede ser números enteros, flotantes y complejos .
Sintaxis: cmath.isinf(x)
Parámetro: Este método acepta los siguientes parámetros.
- x : Este parámetro es el valor para verificar el infinito.
Devoluciones: este método devuelve un valor booleano.
Los siguientes ejemplos ilustran el uso de la función anterior:
Ejemplo 1 :
Python3
# Python code to implement # the isinf()function # importing "cmath" # for mathematical operations import cmath # using cmath.isinf() method val = cmath.isinf(1 + 2j) print(val)
Producción:
False
Ejemplo 2:
Python3
# Python code to implement # the isinf()function # importing "cmath" # for mathematical operations import cmath # using cmath.isinf() method val = cmath.isinf(complex(1 + float('inf'))) print(val)
Producción:
True
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA