numpy.sort_complex()
  • References/Python/NumPy/Routines/Sorting, searching, and counting

numpy.sort_complex(a)

2025-01-10 15:47:30
numpy.extract()
  • References/Python/NumPy/Routines/Sorting, searching, and counting

numpy.extract(condition, arr)

2025-01-10 15:47:30
numpy.argmin()
  • References/Python/NumPy/Routines/Sorting, searching, and counting

numpy.argmin(a, axis=None, out=None)

2025-01-10 15:47:30
numpy.count_nonzero()
  • References/Python/NumPy/Routines/Sorting, searching, and counting

numpy.count_nonzero(a) Counts the number of non-zero values in the array a.

2025-01-10 15:47:30
numpy.where()
  • References/Python/NumPy/Routines/Sorting, searching, and counting

numpy.where(condition[, x, y]) Return elements, either from x or y, depending on condition

2025-01-10 15:47:30
numpy.argwhere()
  • References/Python/NumPy/Routines/Sorting, searching, and counting

numpy.argwhere(a)

2025-01-10 15:47:30
numpy.partition()
  • References/Python/NumPy/Routines/Sorting, searching, and counting

numpy.partition(a, kth, axis=-1, kind='introselect', order=None)

2025-01-10 15:47:30
ndarray.sort()
  • References/Python/NumPy/Routines/Sorting, searching, and counting

ndarray.sort(axis=-1, kind='quicksort', order=None) Sort an array, in-place.

2025-01-10 15:47:30
numpy.nanargmax()
  • References/Python/NumPy/Routines/Sorting, searching, and counting

numpy.nanargmax(a, axis=None)

2025-01-10 15:47:30
numpy.searchsorted()
  • References/Python/NumPy/Routines/Sorting, searching, and counting

numpy.searchsorted(a, v, side='left', sorter=None)

2025-01-10 15:47:30