recarray.swapaxes()
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.recarray

recarray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2 interchanged

2025-01-10 15:47:30
recarray.tofile()
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.recarray

recarray.tofile(fid, sep="", format="%s") Write array to a file as text or binary (default). Data is always written

2025-01-10 15:47:30
recarray.any()
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.recarray

recarray.any(axis=None, out=None, keepdims=False) Returns True if any of the elements of a evaluate to True.

2025-01-10 15:47:30
recarray.tobytes()
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.recarray

recarray.tobytes(order='C') Construct Python bytes containing the raw data bytes in the array. Constructs Python

2025-01-10 15:47:30
recarray.searchsorted()
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.recarray

recarray.searchsorted(v, side='left', sorter=None) Find indices where elements of v should be inserted in a to maintain

2025-01-10 15:47:30
recarray.shape
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.recarray

recarray.shape Tuple of array dimensions. Notes May be used to ?reshape? the array, as

2025-01-10 15:47:30
recarray.item()
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.recarray

recarray.item(*args) Copy an element of an array to a standard Python scalar and return it.

2025-01-10 15:47:30
recarray.min()
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.recarray

recarray.min(axis=None, out=None, keepdims=False) Return the minimum along a given axis. Refer to

2025-01-10 15:47:30
recarray.all()
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.recarray

recarray.all(axis=None, out=None, keepdims=False) Returns True if all elements evaluate to True. Refer to

2025-01-10 15:47:30
recarray.dot()
  • References/Python/NumPy/Array objects/Standard array subclasses/numpy.recarray

recarray.dot(b, out=None) Dot product of two arrays. Refer to

2025-01-10 15:47:30