recarray.conj() Complex-conjugate all elements. Refer to numpy.conjugate for full documentation.
recarray.argmax(axis=None, out=None) Return indices of the maximum values along the given axis. Refer to
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.ptp(axis=None, out=None) Peak to peak (maximum - minimum) value 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.field(attr, val=None)
recarray.reshape(shape, order='C') Returns an array containing the same data with a new shape. Refer to
recarray.dot(b, out=None) Dot product of two arrays. Refer to
recarray.dumps() Returns the pickle of the array as a string. pickle.loads or numpy.loads will convert the string back to
Page 6 of 8