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:
>>> import numpy as np >>> np.arctanh(np.array([0], dtype='int8')).dtype dtype('float16') >>> np.arctanh(np.array([0], dtype='int16')).dtype dtype('float32') >>> np.arctanh(np.array([0], dtype='int32')).dtype dtype('float64')
vs.
>>> import bohrium as bh >>> bh.arctanh(bh.array([0], dtype='int8')).dtype dtype('float32') >>> bh.arctanh(bh.array([0], dtype='int16')).dtype dtype('float32') >>> bh.arctanh(bh.array([0], dtype='int32')).dtype dtype('float32')
Functions showing this behavior:
[ 'sin', 'cos', 'tan', 'sinh', 'cosh', 'tanh', 'arcsin', 'arccos', 'arctan', 'arcsinh', 'arccosh', 'arctanh' ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example:
vs.
Functions showing this behavior:
The text was updated successfully, but these errors were encountered: