numpy.isreal(array) : prueba elemento-sabio si es un número real o no (no infinito o no es un número) y devuelve el resultado como una array booleana.
Parámetros:
array : [array_like] Input array whose element we want to test
Devolver :
boolean array containing the result
Código 1:
Python
# Python Program illustrating # numpy.isreal() method import numpy as geek print("Is Real : ", geek.isreal([1+1j, 0j]), "\n") print("Is Real : ", geek.isreal([1, 0]), "\n")
Producción :
Is Real : [False True] Is Real : [ True True]
Código 2:
Python
# Python Program illustrating # numpy.isreal() method import numpy as geek # Returns True/False value for each element a = geek.arange(20).reshape(5, 4) print("Is Real : \n", geek.isreal(a), "\n") # Returns True/False value as ans # because we have mentioned dtype in the beginning a = geek.arange(20).reshape(5, 4).dtype = float print("\nIs Real : ", geek.isreal(a))
Producción :
Is Real : [[ True True True True] [ True True True True] [ True True True True] [ True True True True] [ True True True True]] Is Real : True
Referencias:
https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.isreal.html#numpy.isreal
Nota:
estos códigos no se ejecutarán en IDE en línea. Así que, por favor, ejecútelos en sus sistemas para explorar el funcionamiento.
Este artículo es aportado por Mohit Gupta_OMG 😀 . Si te gusta GeeksforGeeks y te gustaría contribuir, también puedes escribir un artículo usando write.geeksforgeeks.org o enviar tu artículo por correo a review-team@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA