Skip to content
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

RFC: add angle for computing the argument of a complex number #595

Open
steff456 opened this issue Feb 14, 2023 · 2 comments
Open

RFC: add angle for computing the argument of a complex number #595

steff456 opened this issue Feb 14, 2023 · 2 comments
Labels
API extension Adds new functions or objects to the API. RFC Request for comments. Feature requests and proposed changes.
Milestone

Comments

@steff456
Copy link
Member

steff456 commented Feb 14, 2023

This RFC requests to include a new API in the array API specification for the purpose of computing the argument of a complex number.

Overview

Based on array comparison data, the API is available in the majority of libraries in the PyData ecosystem.

The Array API specification does not currently include an API for computing the argument of a complex number.

Prior art

Proposal:

def angle(x: array, /) -> array

Questions

  • okay with angle as name? arg? phase?
  • only operate on complex arrays, similar to conj et al?

cc @kgryte

@steff456 steff456 added the API extension Adds new functions or objects to the API. label Feb 14, 2023
@kgryte kgryte added this to the v2023 milestone Jun 29, 2023
@kgryte kgryte modified the milestones: v2023, v2024 Jan 25, 2024
@kgryte kgryte added the RFC Request for comments. Feature requests and proposed changes. label Apr 4, 2024
@kgryte kgryte changed the title Add angle function to standard RFC: add angle for computing the argument of a complex number Apr 4, 2024
@ev-br
Copy link
Member

ev-br commented Dec 6, 2024

angle is a thin wrapper on top of atan2. Here's the numpy implementation: https://github.com/numpy/numpy/blob/v2.1.0/numpy/lib/_function_base_impl.py#L1670-L1724

So it's literally atan2(xp.real(z), xp.imag(z)) for complex-valued z plus some additional gymnastics due to xp.imag(real.input) refusing to return zeros. So the decision on adding angle to the spec depends on the resoution of #824, I'd say.
(and I'm on record for making xp.imag(real input returning zeros, FWIW)

@lucascolley
Copy link
Member

we can put this in array-api-extra if it doesn't make it into the standard for v2024

@kgryte kgryte modified the milestones: v2024, v2025 Dec 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API extension Adds new functions or objects to the API. RFC Request for comments. Feature requests and proposed changes.
Projects
None yet
Development

No branches or pull requests

4 participants