argmin
Returns the indices of the minimum values along a specified axis. When the minimum value occurs multiple times, only the indices corresponding to the first occurrence are returned.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
SparseArray
|
Input array. The fill value must be |
required |
axis
|
int
|
Axis along which to search. If |
None
|
keepdims
|
bool_
|
If |
False
|
Returns:
Name | Type | Description |
---|---|---|
out |
ndarray
|
If |
Source code in sparse/numba_backend/_coo/common.py
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 |
|