如果两个数组在公差范围内按元素方式相等,则numpy.ma.allclose()函数返回True。此函数等效于allclose,不同之处在于,根据masked_equal参数,将掩码值视为相等(默认值)或不相等。
用法: numpy.ma.allclose(a, b, masked_equal = True, rtol = 1e-05, atol = 1e-08)
参数:
a,b:[数组]要比较的输入数组。
masked_equal:[布尔,可选]是否认为a和b中的掩码值相等(真)或不正确(假)。默认情况下,它们被视为相等。
rtol :[float,可选]相对公差。相对差等于rtol * b。默认值为1e-5。
atol :[浮点数,可选]绝对公差。绝对差等于atol。默认值为1e-8。
Return :[bool]如果两个数组在给定的公差范围内相等,则返回True,否则返回False。如果任一数组包含NaN,则返回False。
代码1:
# Python program explaining
# numpy.ma.allclose() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
a = geek.ma.array([1e10, 1e-8, 42.0], mask = [0, 0, 1])
b = geek.ma.array([1.00001e10, 1e-9, -42.0], mask = [0, 0, 1])
gfg = geek.ma.allclose(a, b)
print (gfg)
输出:
True
代码2:
# Python program explaining
# numpy.ma.allclose() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
a = geek.ma.array([1e10, 1e-8, 42.0], mask = [0, 0, 1])
b = geek.ma.array([1.00001e10, 1e-9, -42.0], mask = [0, 0, 1])
gfg = geek.ma.allclose(a, b, masked_equal = False)
print (gfg)
输出:
False
相关用法
- Python Wand function()用法及代码示例
- Python map()用法及代码示例
- Python hex()用法及代码示例
- Python dir()用法及代码示例
- Python sum()用法及代码示例
- Python ord()用法及代码示例
- Python id()用法及代码示例
- Python now()用法及代码示例
- Python cmp()用法及代码示例
- Python int()用法及代码示例
- Python tell()用法及代码示例
- Python str()用法及代码示例
- Python oct()用法及代码示例
- Python property()用法及代码示例
- Python Wand fx()用法及代码示例
- Python math.cos()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 numpy.ma.allclose() function – Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。