ndarray.all(axis=None, out=None, keepdims=False) Returns True if all elements evaluate to True. Refer to
ndarray.__mul__ x.__mul__(y) <==> x*y
ndarray.__str__() <==> str(x)
ndarray.argpartition(kth, axis=-1, kind='introselect', order=None) Returns the indices that would partition this array
ndarray.repeat(repeats, axis=None) Repeat elements of an array. Refer to
ndarray.argmax(axis=None, out=None) Return indices of the maximum values along the given axis. Refer to
ndarray.argmin(axis=None, out=None) Return indices of the minimum values along the given axis of a. Refer
ndarray.choose(choices, out=None, mode='raise') Use an index array to construct a new array from a set of choices. Refer
ndarray.__lt__ x.__lt__(y) <==> x<y
ndarray.__xor__ x.__xor__(y) <==> x^y
Page 12 of 13