8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Original ticket http://projects.scipy.org/numpy/ticket/1157 on 2009-07-01 by @cournape, assigned to unknown.
#!python import numpy as np a = np.complex(1, np.inf) b = 1 + 1j * np.inf print a print b
Outputs:
1+infj nan+infj
The text was updated successfully, but these errors were encountered:
@cournape wrote on 2009-07-01
this is actually a python bug:
complex(float("inf"), 0) * complex(0, 1)
Sorry, something went wrong.
Actually, this is obviously correct behavior.
Time to go to sleep :)
TST: mark floating point error tests as unconditional knownfail. See n…
c43a8f2
…umpy#1755.
No branches or pull requests
Original ticket http://projects.scipy.org/numpy/ticket/1157 on 2009-07-01 by @cournape, assigned to unknown.
Outputs:
The text was updated successfully, but these errors were encountered: