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

ndarray.__getitem__ x.__getitem__(y) <==> x[y]

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

ndarray.compress(condition, axis=None, out=None) Return selected slices of this array along given axis. Refer to

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

ndarray.var(axis=None, dtype=None, out=None, ddof=0, keepdims=False) Returns the variance of the array elements, along given

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

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

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

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

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

ndarray.__setitem__ x.__setitem__(i, y) <==> x[i]=y

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

ndarray.__floordiv__ x.__floordiv__(y) <==> x//y

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

ndarray.imag The imaginary part of the array. Examples >>>

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

ndarray.__copy__([order]) Return a copy of the array.

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

ndarray.ptp(axis=None, out=None) Peak to peak (maximum - minimum) value along a given axis. Refer to

2025-01-10 15:47:30