本文简要介绍 python 语言中 numpy.ma.allclose
的用法。
用法:
ma.allclose(a, b, masked_equal=True, rtol=1e-05, atol=1e-08)
如果两个数组在容差内按元素相等,则返回 True。
此函数等效于
allclose
,但屏蔽值被视为相等(默认)或不相等,具体取决于masked_equal
参数。- a, b: array_like
要比较的输入数组。
- masked_equal: 布尔型,可选
a 和 b 中的屏蔽值是否被视为相等 (True) 或不 (False)。默认情况下,它们被认为是相等的。
- rtol: 浮点数,可选
相对容差。相对差异等于
rtol * b
。默认值为 1e-5。- atol: 浮点数,可选
绝对的宽容。绝对差值等于atol。默认值为 1e-8。
- y: bool
如果两个数组在给定的容差范围内相等,则返回 True,否则返回 False。如果任一数组包含 NaN,则返回 False。
参数:
返回:
注意:
如果以下等式按元素为 True,则
allclose
返回 True:absolute(`a` - `b`) <= (`atol` + `rtol` * absolute(`b`))
如果所有元素都返回 Truea和b在给定的公差范围内是相等的。
例子:
>>> a = np.ma.array([1e10, 1e-7, 42.0], mask=[0, 0, 1]) >>> a masked_array(data=[10000000000.0, 1e-07, --], mask=[False, False, True], fill_value=1e+20) >>> b = np.ma.array([1e10, 1e-8, -42.0], mask=[0, 0, 1]) >>> np.ma.allclose(a, b) False
>>> a = np.ma.array([1e10, 1e-8, 42.0], mask=[0, 0, 1]) >>> b = np.ma.array([1.00001e10, 1e-9, -42.0], mask=[0, 0, 1]) >>> np.ma.allclose(a, b) True >>> np.ma.allclose(a, b, masked_equal=False) False
不直接比较屏蔽值。
>>> a = np.ma.array([1e10, 1e-8, 42.0], mask=[0, 0, 1]) >>> b = np.ma.array([1.00001e10, 1e-9, 42.0], mask=[0, 0, 1]) >>> np.ma.allclose(a, b) True >>> np.ma.allclose(a, b, masked_equal=False) False
相关用法
- Python numpy ma.all用法及代码示例
- Python numpy ma.allequal用法及代码示例
- Python numpy ma.apply_along_axis用法及代码示例
- Python numpy ma.atleast_3d用法及代码示例
- Python numpy ma.argmax用法及代码示例
- Python numpy ma.argmin用法及代码示例
- Python numpy ma.asarray用法及代码示例
- Python numpy ma.append用法及代码示例
- Python numpy ma.average用法及代码示例
- Python numpy ma.atleast_2d用法及代码示例
- Python numpy ma.anomalies用法及代码示例
- Python numpy ma.array用法及代码示例
- Python numpy ma.atleast_1d用法及代码示例
- Python numpy ma.arange用法及代码示例
- Python numpy ma.anom用法及代码示例
- Python numpy ma.apply_over_axes用法及代码示例
- Python numpy ma.asanyarray用法及代码示例
- Python numpy ma.argsort用法及代码示例
- Python numpy ma.indices用法及代码示例
- Python numpy ma.zeros用法及代码示例
- Python numpy ma.diff用法及代码示例
- Python numpy ma.mask_rowcols用法及代码示例
- Python numpy ma.where用法及代码示例
- Python numpy ma.zeros_like用法及代码示例
- Python numpy ma.notmasked_contiguous用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.ma.allclose。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。