Python numpy.isrealobj()
numpy.isrealobj(array) :这个逻辑函数帮助检查数组是否没有复数类型或者数组有复数。即使虚数部分等于零,它也不被认为是实数对象。
参数 :
array : [array_like]输入数组或对象的元素,我们需要测试。
返回 :
如果输入数组没有任何复杂元素,则为真,否则为假。
代码 1 :
# Python program explaining
# isrealobj() function
import numpy as np
in_array = [1, 3, 5, 4]
print ("Input array : ", in_array)
output_value = np.isrealobj(in_array)
print ("\nIs real : ", output_value)
输出 :
Input array : [1, 3, 5, 4]
Is real : True
代码 2 :
# Python Program illustrating
# numpy.isrealobj() method
import numpy as geek
# Returns True/False value for each element
a = geek.arange(20).reshape(5, 4)
print("Is real : ", geek.isrealobj(a))
# Returns True/False value as ans
# because we have mentioned dtpe in the beginning
b = geek.arange(20).reshape(5, 4).dtype = complex
print("\n",b)
print("\nIs real : ", geek.isrealobj(b))
b = [[1j],
[3]]
print("\nIs real : ", geek.isrealobj(b))
输出 :
Is real : True
class 'complex'
Is real : True
Is real : False