recarray.flags Information about the memory layout of the array. Notes The
recarray.shape Tuple of array dimensions. Notes May be used to ?reshape? the array, as
recarray.min(axis=None, out=None, keepdims=False) Return the minimum along a given axis. Refer to
recarray.all(axis=None, out=None, keepdims=False) Returns True if all elements evaluate to True. Refer to
recarray.item(*args) Copy an element of an array to a standard Python scalar and return it.
recarray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2 interchanged
recarray.conjugate() Return the complex conjugate, element-wise. Refer to numpy.conjugate for full
recarray.T Same as self.transpose(), except that self is returned if self.ndim < 2. Examples
recarray.tobytes(order='C') Construct Python bytes containing the raw data bytes in the array. Constructs Python
recarray.put(indices, values, mode='raise') Set a.flat[n] = values[n] for all n in indices.
Page 7 of 8