xorbits.numpy.iscomplexobj#

xorbits.numpy.iscomplexobj(x)#

Check for a complex type or an array of complex numbers.

The type of the input is checked, not the value. Even if the input has an imaginary part equal to zero, iscomplexobj evaluates to True.

参数

x (any) – The input can be of any type and shape.

返回

iscomplexobj – The return value, True if x is of a complex type or has at least one complex element.

返回类型

bool

实际案例

>>> np.iscomplexobj(1)  
False
>>> np.iscomplexobj(1+0j)  
True
>>> np.iscomplexobj([3, 1+0j, True])  
True

警告

This method has not been implemented yet. Xorbits will try to execute it with numpy.

This docstring was copied from numpy.