NumPy的logical_and.reduce的内部工作原理

时间:2019-02-26 09:18:33

标签: python numpy

我想知道np.logical_and.reduce()的工作方式。

如果我查看logical_and文档,它会将其显示为具有某些参数的函数。但是,当它与 reduce 一起使用时,它不会得到任何参数。

当我查看reduce文档时,可以看到它具有 ufunc.reduce 作为其定义。因此,我想知道,当我调用np.logical_and.reduce()时会使用哪种机制? logical_and 作为 ufunc 在该代码段中代表什么:函数,对象或其他内容?

1 个答案:

答案 0 :(得分:1)

我不确定您的问题是什么。使用Python帮助减少的参数如下所示。 reduce充当ufunc的方法,它是在运行时接受参数的reduce。

In [1]: import numpy as np

help(np.logical_and.reduce)
Help on built-in function reduce:
reduce(...) method of numpy.ufunc instance
    reduce(a, axis=0, dtype=None, out=None, keepdims=False)
    Reduces `a`'s dimension by one, by applying ufunc along one axis.

玩这个:

a=np.arange(12.0)-6.0
a.shape=3,4
a
Out[6]:
array([[-6., -5., -4., -3.],
       [-2., -1.,  0.,  1.],
       [ 2.,  3.,  4.,  5.]])

np.logical_and.reduce(a, axis=0)
Out[7]: array([ True,  True, False,  True], dtype=bool)
# False for zero in column 2

np.logical_and.reduce(a, axis=1)
Out[8]: array([ True, False,  True], dtype=bool)
# False for zero in row 1

如果保留尺寸,可能会更清楚。

np.logical_and.reduce(a, axis=0, keepdims=True)
Out[12]: array([[ True,  True, False,  True]], dtype=bool)

np.logical_and.reduce(a, axis=1, keepdims=True)
Out[11]:
array([[ True],
       [False],    # Row 1 contains a zero.
       [ True]], dtype=bool)

约简将沿选定轴的每个元素与 累积结果已购买。这与Python相当,我相信numpy会更高效。

res=a[0]!=0     # The initial value for result bought forward
for arr in (a!=0)[1:]:
    print(res, arr)
    res = np.logical_and(res, arr)  # logical and res and a!=0
print('\nResult: ', res)

Out:
[ True  True  True  True] [ True  True False  True]
[ True  True False  True] [ True  True  True  True]

Result:  [ True  True False  True]

希望这有助于或帮助澄清您的问题。

编辑:链接到文档和可调用对象示例。

ufunc documentation方法文档在页面下方约60%。

要了解带有方法的可调用对象,这里有一个ListUfunc类,给出了Python列表的numpy ufuncs的非常基本的示例。

class ListUfunc:
    """ Create 'ufuncs' to process lists. """
    def __init__(self, func, init_reduce=0):
        self._do = func   # _do is the scalar func to apply.
        self.reduce0 = init_reduce  # The initial value for the reduction method
        # Some reductions start from zero, logical and starts from True
    def __call__(self, a, b):
        """ Apply the _do method to each pair of a and b elements. """
        res=[]
        for a_item, b_item in zip(a, b):
            res.append(self._do(a_item, b_item))
        return res

    def reduce(self, lst):
        bfwd = self.reduce0
        for item in lst:
            bfwd = self._do(bfwd, item)
        return bfwd

a=range(12)
b=range(12,24)    

plus = ListUfunc(lambda a, b : a+b)
plus(a, b)
Out[6]: [12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34]
plus.reduce(a)
Out[7]: 66
plus.reduce(b)
Out[8]: 210

log_and = ListUfunc( lambda a, b: bool(a and b), True )
log_and(a,b)
Out[25]: [False, True, True, True, True, True, True, True, True, True, True, True]
log_and.reduce(a)
Out[27]: False  # a contains a zero

log_and.reduce(b)
Out[28]: True  # b doesn't contain a zero