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
numpy
Somehow, using numpy.sqrt converts my class into a numpy array ... wtf? Everything is good with math.sqrt though.
numpy.sqrt
math.sqrt
sqrt(3/4)*Quaternion() => Quaternion(w=0.8660254037844386, x=0.0, y=0.0, z=0.0) np.sqrt(3/4)*Quaternion() => array([0.8660254, 0. , 0. , 0. ])
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Somehow, using
numpy.sqrt
converts my class into a numpy array ... wtf? Everything is good withmath.sqrt
though.The text was updated successfully, but these errors were encountered: