recarray.flatten(order='C') Return a copy of the array collapsed into one dimension.
recarray.itemsize Length of one array element in bytes. Examples
recarray.prod(axis=None, dtype=None, out=None, keepdims=False) Return the product of the array elements over the given axis
recarray.strides Tuple of bytes to step in each dimension when traversing an array. The byte offset of element
recarray.trace(offset=0, axis1=0, axis2=1, dtype=None, out=None) Return the sum along diagonals of the array. Refer
recarray.tostring(order='C') Construct Python bytes containing the raw data bytes in the array. Constructs Python
recarray.mean(axis=None, dtype=None, out=None, keepdims=False) Returns the average of the array elements along given axis
recarray.squeeze(axis=None) Remove single-dimensional entries from the shape of a. Refer to
recarray.data Python buffer object pointing to the start of the array?s data.
recarray.compress(condition, axis=None, out=None) Return selected slices of this array along given axis. Refer
Page 1 of 8