-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add design document on complex number ordering #527
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This LGTM, thanks @kgryte.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The main points here, as listed in the PR description, were reviewed also in a call last Thursday, and there was general approval that this is the right approach. So in it goes.
One thing to consider is to merge the content in this PR and the page on branch cuts in a single "complex number support" page. I'll add that to the list of content refactor tasks in gh-533. |
This PR
less
,less_equal
,greater
,greater_equal
,argmin
,argmax
,argsort
,sort
,min
,max
) documenting that inequality comparison of complex numbers is unspecified and thus implementation-dependent.argsort
andsort
should only accept real-valued data types. The current specification does not restrict the input data types forargsort
andsort
, but does restrictargmin
andargmax
to real-valued data types. This PR updatesargsort
andsort
to align withargmin
andargmax
, as boolean values have no natural ordering. The divergence was likely an oversight.Prior Art
In general, because complex numbers have no natural ordering, ordering APIs supporting complex numbers inevitably lead to unintuitive results, as documented on the NumPy issue tracker. The general gist there is that ordering complex numbers should be deprecated, with only specialized support (with support for customized sort order) for complex number ordering when wanting to sort a complex number array.
np.argmax
: numpy.argmax() doesn't behave intuitively with complex vectors numpy/numpy#10469np.median
: np.median on a complex array return incorrect value for the imaginary part numpy/numpy#12943np.quantile
: BUG: Quantile function on complex numbers doesn't error numpy/numpy#22652