ndarray.__gt__ x.__gt__(y) <==> x>y
ndarray.strides Tuple of bytes to step in each dimension when traversing an array. The byte offset of element
ndarray.__reduce__() For pickling.
ndarray.sum(axis=None, dtype=None, out=None, keepdims=False) Return the sum of the array elements over the given axis.
ndarray.__oct__() <==> oct(x)
ndarray.reshape(shape, order='C') Returns an array containing the same data with a new shape. Refer to
ndarray.__deepcopy__() ? Deep copy of array. Used if copy.deepcopy is called on an array.
ndarray.squeeze(axis=None) Remove single-dimensional entries from the shape of a. Refer to
ndarray.newbyteorder(new_order='S') Return the array with the same data viewed with a different byte order. Equivalent
ndarray.getfield(dtype, offset=0) Returns a field of the given array as a certain type. A field is a view of the
Page 2 of 13