ndarray.
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.__ge__ x.__ge__(y) <==> x>=y

2025-01-10 15:47:30
ndarray.
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.__float__() <==> float(x)

2025-01-10 15:47:30
ndarray.nonzero()
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.nonzero() Return the indices of the elements that are non-zero. Refer to

2025-01-10 15:47:30
ndarray.
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.__setslice__ x.__setslice__(i, j, y) <==> x[i:j]=y Use of negative indices is not supported

2025-01-10 15:47:30
ndarray.std()
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.std(axis=None, dtype=None, out=None, ddof=0, keepdims=False) Returns the standard deviation of the array elements along

2025-01-10 15:47:30
ndarray.nbytes
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.nbytes Total bytes consumed by the elements of the array. Notes Does not include

2025-01-10 15:47:30
ndarray.shape
  • References/Python/NumPy/Array objects/The N-dimensional array

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

2025-01-10 15:47:30
ndarray.diagonal()
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.diagonal(offset=0, axis1=0, axis2=1) Return specified diagonals. In NumPy 1.9 the returned array is a read-only

2025-01-10 15:47:30
ndarray.
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.__iadd__ x.__iadd__(y) <==> x+=y

2025-01-10 15:47:30
ndarray.
  • References/Python/NumPy/Array objects/The N-dimensional array

ndarray.__le__ x.__le__(y) <==> x<=y

2025-01-10 15:47:30