recarray.tolist() Return the array as a (possibly nested) list. Return a copy of the array data as a (nested) Python
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
recarray.argmax(axis=None, out=None) Return indices of the maximum values along the given axis. Refer to
recarray.getfield(dtype, offset=0) Returns a field of the given array as a certain type. A field is a view of
recarray.ndim Number of array dimensions. Examples >>>
recarray.repeat(repeats, axis=None) Repeat elements of an array. Refer to
recarray.take(indices, axis=None, out=None, mode='raise') Return an array formed from the elements of a at the
recarray.byteswap(inplace) Swap the bytes of the array elements Toggle between low-endian and big-endian data
recarray.conj() Complex-conjugate all elements. Refer to numpy.conjugate for full documentation.
Page 5 of 8