recarray.getfield(dtype, offset=0) Returns a field of the given array as a certain type. A field is a view of
recarray.argmax(axis=None, out=None) Return indices of the maximum values along the given axis. Refer to
recarray.tolist() Return the array as a (possibly nested) list. Return a copy of the array data as a (nested) Python
recarray.ravel([order]) Return a flattened array. Refer to
recarray.byteswap(inplace) Swap the bytes of the array elements Toggle between low-endian and big-endian data
recarray.newbyteorder(new_order='S') Return the array with the same data viewed with a different byte order.
recarray.ndim Number of array dimensions. Examples >>>
recarray.conj() Complex-conjugate all elements. Refer to numpy.conjugate for full documentation.
recarray.dump(file) Dump a pickle of the array to the specified file. The array can be read back with pickle.load or numpy
recarray.size Number of elements in the array. Equivalent to np.prod(a.shape), i.e., the product of
Page 5 of 8