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

Add complex number support for pow #537

Merged
merged 1 commit into from
Dec 13, 2022
Merged

Add complex number support for pow #537

merged 1 commit into from
Dec 13, 2022

Conversation

kgryte
Copy link
Contributor

@kgryte kgryte commented Dec 1, 2022

This PR

  • adds complex number support to pow by documenting special cases. This PR indicates that implementations should handle special cases as if pow is implemented exp(x2*log(x1)), following C99; however, implementations are allowed to handle special cases more carefully. Accordingly, pow inherits a branch cut from log. In general, pow is underspecified, as handling all special cases is difficult given the number of argument permutations.
  • updates the input and output array data types to be any numeric data type, not just real-valued data types.
  • derives special cases from C99

References

@kgryte kgryte added API change Changes to existing functions or objects in the API. topic: Complex Data Types Complex number data types. labels Dec 1, 2022
@kgryte kgryte added this to the v2022 milestone Dec 1, 2022
@seberg
Copy link
Contributor

seberg commented Dec 1, 2022

Btw. do you happen to have a clear answer to what the branch-cuts are with respect to returning -0 for the case of 0**something?

@kgryte
Copy link
Contributor Author

kgryte commented Dec 1, 2022

@seberg For the case of 0**something, I believe this should just follow IEEE 754, so long as something is real-valued. If something is a complex number, the branch cut from log would apply and the result would be according to exp.

Copy link
Member

@rgommers rgommers left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks @kgryte

@rgommers rgommers merged commit f6c18b5 into main Dec 13, 2022
@rgommers rgommers deleted the cmplx-pow branch December 13, 2022 21:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API change Changes to existing functions or objects in the API. topic: Complex Data Types Complex number data types.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants