ndarray.__reduce__() For pickling.
ndarray.getfield(dtype, offset=0) Returns a field of the given array as a certain type. A field is a view of the
ndarray.__gt__ x.__gt__(y) <==> x>y
ndarray.sum(axis=None, dtype=None, out=None, keepdims=False) Return the sum of the array elements over the given axis.
ndarray.__int__() <==> int(x)
ndarray.__hex__() <==> hex(x)
ndarray.__iand__ x.__iand__(y) <==> x&=y
ndarray.strides Tuple of bytes to step in each dimension when traversing an array. The byte offset of element
ndarray.__deepcopy__() ? Deep copy of array. Used if copy.deepcopy is called on an array.
ndarray.compress(condition, axis=None, out=None) Return selected slices of this array along given axis. Refer to
Page 2 of 13