Numpy 的 isrealobj(~)
方法检查给定对象是否至少包含一个实数。
参数
1. x
| any
输入对象。
返回值
返回单个布尔值,其中 True
表示 x
包含至少一个实数。
例子
基本用法
a = np.array([1+2j, 5])
np.isrealobj(a)
False
相关用法
- Python NumPy isreal方法用法及代码示例
- Python isinstance方法用法及代码示例
- Python string isidentifier()用法及代码示例
- Python calendar isleap()用法及代码示例
- Python math isclose()用法及代码示例
- Python NumPy isalnum方法用法及代码示例
- Python NumPy isnat方法用法及代码示例
- Python string isupper()用法及代码示例
- Python string isalnum()用法及代码示例
- Python Pandas isnull方法用法及代码示例
- Python isdisjoint()用法及代码示例
- Python NumPy isposinf方法用法及代码示例
- Python issubclass()用法及代码示例
- Python string istitle()用法及代码示例
- Python NumPy isclose方法用法及代码示例
- Python math isnan()用法及代码示例
- Python NumPy iscomplexobj方法用法及代码示例
- Python string isalpha()用法及代码示例
- Python NumPy isnumeric方法用法及代码示例
- Python NumPy isfinite方法用法及代码示例
- Python string isdigit()用法及代码示例
- Python NumPy isalpha方法用法及代码示例
- Python string isdecimal()用法及代码示例
- Python NumPy isinf方法用法及代码示例
- Python NumPy isdigit方法用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | isrealobj method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。