| Parameters: | - a:array_like
Input array or object that can be converted to an array. - axis:None or int or tuple of ints, optional
Axis or axes along which a logical AND reduction is performed.The default (axis =None) is to perform a logical AND over allthe dimensions of the input array.axis may be negative, inwhich case it counts from the last to the first axis. If this is a tuple of ints, a reduction is performed on multipleaxes, instead of a single axis or all the axes as before. - out:ndarray, optional
Alternate output array in which to place the result.It must have the same shape as the expected output and itstype is preserved (e.g., ifdtype(out) is float, the resultwill consist of 0.0’s and 1.0’s). Seedoc.ufuncs (Section“Output arguments”) for more details. - keepdims:bool, optional
If this is set to True, the axes which are reduced are leftin the result as dimensions with size one. With this option,the result will broadcast correctly against the input array. If the default value is passed, thenkeepdims will not bepassed through to theall method of sub-classes ofndarray, however any non-default value will be. If thesub-class’ method does not implementkeepdims anyexceptions will be raised.
|
|---|