-
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 complex number support to log
#514
Conversation
Sphinx is unhappy with the branch cuts label:
|
Now that #461 is merged, all checks for this PR now pass. |
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.
Thanks @kgryte. One minor comment on the diff. My main comment is about the branch cuts - it would be very helpful to document that they are consistent with (and based on) those from C99. It is noted in the branch cuts design document, however that is probably easy to miss (and it requires the user to know which functions are in C99 and which aren't). Maybe in a couple of words, "branch cuts for log
match those in C99"?.
For functions like this with a branch cut, should we add special cases along the cut, i.e., |
Co-authored-by: Aaron Meurer <asmeurer@gmail.com>
Is it worth specially noting that functions like log, sqrt, etc. are not expected to promote floating-point arguments outside of their real domain to complex (and indeed, such value-based casting is explicitly recommended against)? |
Did you mean to link to a specific line? I don't see where this is mentioned. |
From your comment, seemed like you were referring to how complex conjugates should be specified. |
Yes, this is likely a good idea. Probably better to include as part of the general complex number design doc. |
I mean specifically special cases along the cut, for +0 and -0. Something like "If Also, a weird thing I just discovered: |
This comment applies to a large number of open PRs, so I will add it as a separate task in gh-533. |
@asmeurer At the moment, the spec does cover the special cases you mention. Per the guidance in C99 (and also included in this PR),
We can see that the equality requirement holds by computing the principal value of the complex logarithm in terms of where
In short, I don't think we need to go beyond what this PR already does. Namely, require that |
Hmm, OK. What about functions whose branch cuts are along the imaginary axis? Anyway, let's make sure this is tested properly when we add it to the test suite (specifically, with +/- 0 being tested) @honno |
Just to be clear, I'm OK with this PR. My question applies to some other functions, but it's not something that should block things, since it's just about a special case which could easily be added later. |
Thanks @asmeurer for the clarification and the new issue. Looks like we're all good here then. |
This PR
log
by documenting special cases. By convention, the natural logarithm has a single branch cut, which is defined as the real interval(-infinity, 0)
.