We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example:
ComplexField.power(Complex(-3.0, 0.0), 0.5)
This results in a complex result where both the real and imaginary parts are NaN.
Workaround:
ComplexField(Complex(-3.0, 0.0), Complex(0.5, 0.0))
The text was updated successfully, but these errors were encountered:
Thank you, I've reproduced it on the latest build.
Sorry, something went wrong.
Thanks again, the problem was in optimization made for complex numbers without real part: 8a754ac.
Fixed GitHub #524 (Complex power of real-valued number
8a754ac
SPC-code
No branches or pull requests
Example:
This results in a complex result where both the real and imaginary parts are NaN.
Workaround:
The text was updated successfully, but these errors were encountered: