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