概述
文章
- 基础篇
- 进阶篇
- 其他篇
用户指南
NumPy 参考手册
- 数组对象
- 常量
- 通函数(ufunc)
- 常用 API
- 创建数组
- 数组处理程序
- 二进制运算
- 字符串操作
- C-Types 外部函数接口(numpy.ctypeslib)
- 时间日期相关
- 数据类型相关
- 可选的 Scipy 加速支持(numpy.dual)
- 具有自动域的数学函数( numpy.emath)
- 浮点错误处理
- 离散傅立叶变换(numpy.fft)
- 财金相关
- 实用的功能
- 特殊的 NumPy 帮助功能
- 索引相关
- 输入和输出
- 线性代数(numpy.linalg)
- 逻辑函数
- 操作掩码数组
- 数学函数(Mathematical functions)
- 矩阵库 (numpy.matlib)
- 杂项(Miscellaneous routines)
- 填充数组(Padding Arrays)
- 多项式(Polynomials)
- 随机抽样 (numpy.random)
- 操作集合(Set routines)
- 排序,搜索和计数(Sorting, searching, and counting)
- Statistics
- Test Support (numpy.testing)
- Window functions
- 打包(numpy.distutils)
- NumPy Distutils 用户指南
- NumPy C-API
- NumPy 的内部
- NumPy 和 SWIG
其他文档
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
逻辑函数
真值测试
方法 | 描述 |
---|---|
allopen in new window(a[, axis, out, keepdims]) | 测试是否沿给定轴的所有数组元素求值为True。 |
anyopen in new window(a[, axis, out, keepdims]) | 测试沿给定轴的任何数组元素的求值是否为True。 |
数组内容
方法 | 描述 |
---|---|
isfiniteopen in new window(x, /[, out, where, casting, order, …]) | 逐一测试有限性(不是无穷大还是不是数字)。 |
isinfopen in new window(x, /[, out, where, casting, order, …]) | 逐元素测试正无穷大或负无穷大。 |
isnanopen in new window(x, /[, out, where, casting, order, …]) | 对NaN逐个元素进行测试,并将结果作为布尔数组返回。 |
isnatopen in new window(x, /[, out, where, casting, order, …]) | 对NaT(不是时间)逐个元素进行测试,然后将结果作为布尔数组返回。 |
isneginfopen in new window(x[, out]) | 逐项测试负无穷大,将结果作为布尔数组返回。 |
isposinfopen in new window(x[, out]) | 对正无穷大逐个元素进行测试,以布尔数组形式返回结果。 |
数组类型测试
方法 | 描述 |
---|---|
iscomplexopen in new window(x) | 返回布尔数组,如果输入元素复杂,则返回True。 |
iscomplexobjopen in new window(x) | 检查复杂类型或复杂数字数组。 |
isfortranopen in new window(a) | 检查数组是否是Fortran连续的,而不是C连续的。 |
isrealopen in new window(x) | 返回布尔数组,如果输入元素为实,则返回True。 |
isrealobjopen in new window(x) | 如果x是非复数类型或复数数组,则返回True。 |
isscalaropen in new window(num) | 如果num的类型是标量类型,则返回True。 |
逻辑运算
方法 | 描述 |
---|---|
logical_andopen in new window(x1, x2, /[, out, where, …]) | 按元素计算x1和x2的真值。 |
logical_oropen in new window(x1, x2, /[, out, where, casting, …]) | 按元素计算x1或x2的真值。 |
logical_notopen in new window(x, /[, out, where, casting, …]) | 计算非x元素的真值。 |
logical_xoropen in new window(x1, x2, /[, out, where, …]) | 按元素计算x1 XOR x2的真值。 |
对照
方法 | 描述 |
---|---|
allcloseopen in new window(a, b[, rtol, atol, equal_nan]) | 如果两个数组在公差范围内按元素方式相等,则返回True。 |
iscloseopen in new window(a, b[, rtol, atol, equal_nan]) | 返回一个布尔数组,其中两个数组在公差范围内按元素方式相等。 |
array_equalopen in new window(a1, a2) | 如果两个数组具有相同的形状和元素,则为True,否则为False。 |
array_equivopen in new window(a1, a2) | 如果输入数组的形状一致且所有元素均相等,则返回True。 |
greateropen in new window(x1, x2, /[, out, where, casting, …]) | 按元素返回(x1 > x2)的真值。 |
greater_equalopen in new window(x1, x2, /[, out, where, …]) | 按元素返回(x1 >= x2)的真值。 |
lessopen in new window(x1, x2, /[, out, where, casting, …]) | 按元素返回(x1 < x2)的真值。 |
less_equalopen in new window(x1, x2, /[, out, where, casting, …]) | 按元素返回(x1 =< x2)的真值。 |
equalopen in new window(x1, x2, /[, out, where, casting, …]) | 按元素返回(x1 == x2)。 |
not_equalopen in new window(x1, x2, /[, out, where, casting, …]) | 按元素返回(x1 != x2)。 |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论